mirror of
https://github.com/astefanutti/decktape.git
synced 2024-12-13 19:03:35 +03:00
e2bb2c93c3
Activates CLI string styling with Chalk except on Windows OS. Adds the libs directory to the require paths for seamless referencing of require libraries.
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
'use strict';
|
|
|
|
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
|
|
|
module.exports = function (str) {
|
|
if (typeof str !== 'string') {
|
|
throw new TypeError('Expected a string');
|
|
}
|
|
|
|
return str.replace(matchOperatorsRe, '\\$&');
|
|
};
|