
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
abbrev-kindof
Advanced tools
Use abbreviations for checking type of given value. Like `kindof(val, 'soa')` to check that value is string, object or array.
Use abbreviations for checking type of given value. Like
kindof(val, 'soa')to check that value is string, object or array.
npm i abbrev-kindof --save
For more use-cases see the tests
const abbrevKindof = require('abbrev-kindof')
Check type of a
valwith abbreviations.
Params
val {Mixed}: value to checktype {String|Array}: list of single-letter (abbr) typesreturns {Boolean}: if true, so val match one of the abbreviated typesExample
// `soa` here means - string, object or array
abbrevKindof(123, 'soa') //=> false
abbrevKindof('foo bar', 'soa') //=> true
abbrevKindof({a: 123}, 'soa') //=> true
abbrevKindof(['c', 'd'], 'soa') //=> true
Using map-types
a for arrayb for booleanf for functionn for numbero for objectr for regexps for stringy for symbolkind-of module. | homepagekind-of type check utility with support for promises, generators, streams and errors. Like kindof(Promise.resolve(1)) === 'promise' and etc. | homepagePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.
FAQs
Use abbreviations for checking type of given value. Like `kindof(val, 'soa')` to check that value is string, object or array.
The npm package abbrev-kindof receives a total of 2 weekly downloads. As such, abbrev-kindof popularity was classified as not popular.
We found that abbrev-kindof 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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.