File size: 169 Bytes
c2b7eb3
 
 
 
 
 
1
2
3
4
5
6
7
export function encodePointer(p) {
    return encodeURI(escapePointer(p));
}
export function escapePointer(p) {
    return p.replace(/~/g, '~0').replace(/\//g, '~1');
}