/ cloudformation-templates / node_modules / aws-cdk / node_modules / es5-ext / lib / Object / valid-value.js
valid-value.js
1 'use strict'; 2 3 module.exports = function (value) { 4 if (value == null) { 5 throw new TypeError("Cannot use null or undefined"); 6 } 7 return value; 8 };