source:
node_modules/@swagger-api/apidom-json-pointer/es/escape.mjs
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 176 bytes |
Line | |
---|---|
1 | import { pipe, replace } from 'ramda'; |
2 | |
3 | // escape :: String -> String |
4 | const escape = pipe(replace(/~/g, '~0'), replace(/\//g, '~1'), encodeURIComponent); |
5 | export default escape; |
Note:
See TracBrowser
for help on using the repository browser.