maybe-something
v0.0.1
Published
Checks if something is maybe something
Downloads
2
Readme
Maybe Something
Yet another useless project, brought to you by Redacted Devs
Ever wanted to check to see you maybe have something, but you're too lazy to use typescript? Boy, do I have the most useless package for you!
Example
const MaybeSomething = require("./index");
/**
* Returns Obj
* { value }
**/
let thing = new MaybeSomething("thing");
let nothing = new MaybeSomething(null);
/**
* MaybeSomething { value: 'thing' }
* MaybeSomething { value: null }
* */
console.log(thing);
console.log(nothing);Contributing
- Contribute on the open source github!
