JSPM

type-component

0.0.1
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 125315
    • Score
      100M100P100Q139416F

    Cross-browser type assertions (less broken typeof)

    Package Exports

    • type-component
    • type-component/index.js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (type-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    type

    Type assertions aka less-broken typeof.

    Example

    var type = require('type');
    
    var obj = new Date;
    if (type(obj) == 'date') ...

    API

    type(new Date) == 'date'
    type({}) == 'object'
    type(null) == 'null'
    type(undefined) == 'undefined'
    type("hey") == 'string'
    type(true) == 'boolean'
    type(false) == 'boolean'
    type(12) == 'number'
    type(type) == 'function'
    type(/asdf/) == 'regexp'
    type((function(){ return arguments })()) == 'arguments'
    type([]) == 'array'

    License

    MIT