Escaping
Functions for escaping characters and removing escaping.
Install
npm install escaping
Usage
escape()
; let result = ; // '1\\.2\\.3'
unescape()
; let result = ; // '1.2.3'
split()
; let result = ; // ['1', '2', '3']
Testing
To run tests, use:
npm test