
Product
Announcing Bun and vlt Support in Socket
Bringing supply chain security to the next generation of JavaScript package managers
A utility library for random JavaScript quirks.
Version: 0.0.4
Documentation: https://sholladay.github.io/dangit/
npm install dangit --save
Retrieve the true type of any input, as a lowercase string.
var input = null;
dangit.whatis(input); // => "null"
But why type all that and still have to do a strict equality check? Fuggedaboutit.
var input = null;
dangit.isNull(input); // => true
Congrate, you saved 3 characters over typeof and you weren't lied to.
Another benefit is more intuitive operator precedence.
Next let's get the ever present global object.
dangit.getTheGlobalObject(); // => window in browsers, global in Node.js, etc.
It's a smarty pants function and won't get tricked as easily as you may think.
// anywhere in Node.js
var window = {};
dangit.getTheGlobalObject() === window; // => false
or...
// anywhere in a browser
var global = {};
dangit.getTheGlobalObject() === global; // => false
Isn't that warm and cozy? Just look at it.
Another common task is to construct an API namespace. Let's do that.
var ns = dangit.namespace('superb.llamas'); // => returns a namespaced global object
or if you already have something to extend...
var x = { y:{} },
z = x.y,
ns = dangit.namespace(z, 'pirates.forever'); // => returns a new object, which is only global if z was
Notes:
false as the last argument, it will turn off force mode, throwing an error instead. And...Once you've got a namespace, you could really use some ninjas to help solve that issue where you want everything to be coerced to an easy-to-process list. Or a unicorn - that would do nicely, too.
function dream() {
var args = dangit.flatten(arguments);
console.log(args.join(' ') + ', whatever');
}
dream(['people', ['pass'], ['weird']], 'stuff') // => "people pass weird stuff, whatever"
Yeah that's basically a real actual, magical unicorn for your APIs.
Who cares if they used querySelector or querySelectorAll, just flatten and process whatever you get the same way, 100% of the time.
So then you've got your cool new 3rd party JavaScript library and you find out your logger doesn't work on some website because they decided to prevent developers from accidentally being noisy in production.
dangit.isNative(console.log); // => true only if it hasn't been overwritten
console.log = function () {};
dangit.isNative(console.log); // => false
Note: This only works for functions and does not guarantee their properties are intact, file an issue if you want more.
And if you really flippin' want the console back, we've got some hacks up our sleeve.
dangit.resetConsole()
So now you want to figure out if it makes sense to loop over some input. It could be a NodeList, HTMLCollection, a plain old array, or something far more devious.
var input = 'abc';
dangit.isArrayish(input); // => false, even though it has a length of 3
input = function (a, b) {};
dangit.isArrayish(input); // => false, even though it has a length of 2
input = document.querySelectorAll('a');
dangit.isArrayish(input); // => true, even though it is not a typical array
Then you encounter some ES5 interestingness where properties aren't allowed to be modified. Eventually you discover Object.isFrozen which is supposed to help you plan for this, but it throws errors for half the input in the galaxy.
var input = null;
console.log(typeof input); // => "object"
Object.isFrozen(undefined) // => Uncaught TypeError: Object.isFrozen called on non-object
dangit.isFrozen() // => false
After tooling up to process input, you'll come across situations where you need to provide defaults or keep track of state during asynchronous tasks. Do this by stamping a new object with a bunch of properties.
var keys = ['a', 'b', 'c', 'd'],
values = false;
dangit.stampObject(keys, values); // => {a: false, b: false, c: false, d: false}
You can provide either argument as a simple value or an array-like object, they will be flattened. Values will be used until there's no more left, at which point the last one will become sticky.
var keys = ['a', ['b', 'c'], 'd'],
values = [false, true];
dangit.stampObject(keys, values); // => {a: false, b: true, c: true, d: true}
And also...
var keys = ['a', 'b', 'c', 'd'],
values = [false, 1, 1, true, 6, 'moo' ]; // it is safe to over-provide
dangit.stampObject(keys, values); // => {a: false, b: 1, c: 1, d: true}
Do some stuff with that stamp, then when the time is right, make sure the results were what you expected.
var keys = ['a', 'b', 'c', 'd'],
values = false,
stamp = dangit.stampObject(keys, values); // => {a: false, b: false, c: false, d: false}
// ... do async stuff with each, set to true when complete ...
// ... then, later...
dangit.checkStamp(stamp, true); // => true
Note: Due to the non-guaranteed order of enumerating objects, this is not quite like .stampObject() - it can only take a simple value to check for an entire object. To compensate a bit, it does non-strict equality checking by default, with a third boolean argument for making it strict. File an issue if you want more.
See our contribution guidelines for mode details.
git checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureGo make something, dang it.
FAQs
A utility library for JavaScript quirks.
The npm package dangit receives a total of 9 weekly downloads. As such, dangit popularity was classified as not popular.
We found that dangit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.