UNPKG

enum

Version:

Enum is a javascript module that introduces the Enum Type. It works for node.js, in the browser and for deno.

6 lines (5 loc) 279 B
// eslint-disable-next-line valid-typeof export const isType = (type, value) => typeof value === type export const isObject = (value) => isType('object', value) export const isString = (value) => isType('string', value) export const isNumber = (value) => isType('number', value)