MCPcopy Index your code
hub / github.com/nodejs/node / assertNotUndefined

Function assertNotUndefined

deps/v8/test/intl/assert.js:147–151  ·  view source on GitHub ↗

* Throws if value is undefined.

(value, user_message = '')

Source from the content-addressed store, hash-verified

145 * Throws if value is undefined.
146 */
147function assertNotUndefined(value, user_message = '') {
148 if (value === undefined) {
149 fail("not undefined", value, user_message);
150 }
151}
152
153
154/**

Callers 2

checkNoUndefinedFunction · 0.85
assertPresentOfDigitsFunction · 0.85

Calls 1

failFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…