Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

isa.js

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isa.js - npm Package Compare versions

Comparing version 1.7.6 to 1.8.0

2

.eslintrc.js

@@ -122,3 +122,3 @@ module.exports = {

"valid-typeof": 2,
"wrap-iife": [2, "any", { "functionPrototypeMethods": true }],
"wrap-iife": [2, "any"],
"yield-star-spacing": [2, "both"],

@@ -125,0 +125,0 @@ "yoda": [2, "never"],

@@ -7,2 +7,3 @@ 'use strict'

funcTag = '[object Function]',
afuncTag = '[object AsyncFunction]',
numberTag = '[object Number]',

@@ -62,2 +63,5 @@ objectTag = '[object Object]',

},
isAsyncFunction: function (value) {
return this.isObject(value) && objToString.call(value) === afuncTag
},
isBoolean: function (value) {

@@ -64,0 +68,0 @@ return value === true || value === false || (this.isObjectLike(value) && objToString.call(value) === boolTag)

{
"name": "isa.js",
"version": "1.7.6",
"version": "1.8.0",
"description": "Very minimal collection is isA functions. isObject, isArray, isDate...",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/imrefazekas/isa",

@@ -28,2 +28,2 @@ ISA - dependency-free very minimal collection of IsA.. functions

isArray, isObject, isError, isNumber, isDate, isFunction, isBoolean, isString, isRegExp
isArray, isObject, isError, isNumber, isDate, isFunction, isAsyncFunction, isBoolean, isString, isRegExp
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