Repository URL to install this package:
|
Version:
6.0.4 ▾
|
| .. |
| __tests__ |
| README.md |
| delete.ts |
| dot-prop.ts |
| dottable.ts |
| escape.ts |
| get.ts |
| has.ts |
| index.ts |
| paths.ts |
| segments.ts |
| set.ts |
| typings.dot-prop.d.ts |
// same thing, but while loop is 3x faster // function regexed(path) { // return path // .replace(/\\./g, '__e46__') // .replace(/\./g, '__46__') // .replace(/(__e46__)/g, '.') // .split(/__46__/) // // /* also the same */ // return path // .replace(/\\./g, '__e46__') // .split('.') // .map(l => l.replace('__e46__', '.')) // }