All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.es.escape.mjs Maven / Gradle / Ivy

The newest version!
import { pipe, replace } from 'ramda';

// escape :: String -> String
const escape = pipe(replace(/~/g, '~0'), replace(/\//g, '~1'), encodeURIComponent);
export default escape;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy