UNPKG

existential-assign

Version:

Check for the existential value of a variable/object. Assign one if the value doesn't exist.

16 lines (15 loc) 367 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>existential-assign</title> </head> <body> <script src="existential-assign.js" type="text/javascript" charset="utf-8"></script> <script> var existsAssign = require('existential-assign'); hello = existsAssign(null, 'hello world'); console.log(hello); </script> </body> </html>