(arg, propName)
| 1005 | |
| 1006 | |
| 1007 | function validateArgumentNullCheck(arg, propName) { |
| 1008 | if (typeof arg === 'string' && StringPrototypeIncludes(arg, '\u0000')) { |
| 1009 | throw new ERR_INVALID_ARG_VALUE(propName, arg, 'must be a string without null bytes'); |
| 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | |
| 1014 | function validateArgumentsNullCheck(args, propName) { |
no outgoing calls
no test coverage detected
searching dependent graphs…