(val, propStr)
| 125 | */ |
| 126 | var ARGS_PATTERN = /(^|\.)args\[/; |
| 127 | function isDeletable(val, propStr) { |
| 128 | return (val === undefined) || (val === null && !propStr.match(ARGS_PATTERN)); |
| 129 | } |
| 130 | |
| 131 | function npSet(cont, parts, propStr) { |
| 132 | return function(val) { |
no outgoing calls
no test coverage detected
searching dependent graphs…