null-undefined-guard

Guard against null and undefined values


Keywords
front-end, typescript, null, undefined, guard, checking
License
MIT
Install
npm install null-undefined-guard@1.0.0

Documentation

null-undefined-guard

Guard against null and undefined values

Examples/Usage

import nullUndefinedGuard from 'null-undefined-guard'

nullUndefinedGuard(element, name?, logic?)

let e = [3, 4, 5]

nullUndefinedGuard(e, 'Array', () => {
  console.log('Test')
  return e
})

nullUndefinedGuard(e).push(46)