(prop)
| 923 | var indexedPropertyRegex = /^([^\.]+)\[([0-9]+)\](\.)?(.+)?/; |
| 924 | |
| 925 | function notValid(prop) { |
| 926 | // guard against polluting __proto__ and other internals getters and setters |
| 927 | return prop.slice(0, 2) === '__'; |
| 928 | } |
| 929 | |
| 930 | lib.expandObjectPaths = function (data) { |
| 931 | var match, key, prop, datum, idx, dest, trailingPath; |
no outgoing calls
no test coverage detected
searching dependent graphs…