Socket
Socket
Sign inDemoInstall

@analytics/type-utils

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@analytics/type-utils

Tiny runtime type checking utils


Version published
Weekly downloads
178K
increased by2.68%
Maintainers
1
Weekly downloads
 
Created
Source

Type Utilities

A tiny tree shakable utility library for runtime type checking in 327 bytes.

See live demo.

Why this package?

This package exposes re-usable runtime type checking functions. This is useful for shrinking bundle sizes.

How to install

Install @analytics/types-utils from npm.

npm install @analytics/types-utils

API

Below is the api for @analytics/types-utils.

isBrowser

Check if currently in browser context

import { isBrowser } from '@analytics/types-utils'

if (isBrowser) {
  console.log('do things in browser env')
}

isString

Check if value is string

import { isString } from '@analytics/types-utils'

const xyz = 'hi'
console.log(isString(xyz))
// true

isBoolean

Check if value is boolean

import { isBoolean } from '@analytics/types-utils'

const myBool = true
console.log(isBoolean(myBool))
// true

isArray

Check if value is array

import { isArray } from '@analytics/types-utils'

const myArr = ['x', 'y']
console.log(isArray(myArr))
// true

isObject

Check if value is object

import { isObject } from '@analytics/types-utils'

const myObj = { cool: 'hello' }
console.log(isObject(myObj))
// true

isUndefined

Check if value is undefined

import { isUndefined } from '@analytics/types-utils'

let myval
console.log(isUndefined(myval))
// true

Keywords

FAQs

Package last updated on 26 Jul 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc