mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-17 09:16:38 +08:00
8 lines
277 B
JavaScript
8 lines
277 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.removeSpecialCharacters = void 0;
|
|
function removeSpecialCharacters(inputString) {
|
|
return inputString.replace(/[^\w\s-]/g, '');
|
|
}
|
|
exports.removeSpecialCharacters = removeSpecialCharacters;
|