source:
node_modules/@swagger-api/apidom-json-pointer/es/escape.mjs@
65b6638
Last change on this file since 65b6638 was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 176 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 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.