Repository URL to install this package:
|
Version:
1.2.7 ▾
|
| .. |
| README.md |
| TODO.md |
| delete.js |
| dot-prop.js |
| dottable.js |
| escape.js |
| get.js |
| has.js |
| index.js |
| paths.js |
| segments.js |
| set.js |
// 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__', '.')) // }