New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

functionfoundry

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

functionfoundry - npm Package Compare versions

Comparing version 0.12.2 to 0.12.3

deploy-docs.sh

20

fn/_index.js

@@ -99,2 +99,6 @@ 'use strict';

var _isfalsy = require('./isfalsy');
var _isfalsy2 = _interopRequireDefault(_isfalsy);
var _isfunction = require('./isfunction');

@@ -132,2 +136,6 @@

var _istruthy = require('./istruthy');
var _istruthy2 = _interopRequireDefault(_istruthy);
var _isurl = require('./isurl');

@@ -684,2 +692,7 @@

// #### [isfalsy](./isfalsy)
// `isfalsy` returns true when value is a string.
var isFalsy = _isfalsy2.default;
// #### [isfunction](./isfunction)

@@ -725,2 +738,7 @@ // `isfunction` returns true when the value is a JavaScript function.

// #### [istruthy](./istruthy)
// `istruthy` returns true when value is a string.
var isTruthy = _istruthy2.default;
// #### [isurl](./isurl)

@@ -1265,2 +1283,3 @@ // `isurl` returns true when value matches a url pattern.

iseven: _iseven2.default,
isfalsy: _isfalsy2.default,
isfunction: _isfunction2.default,

@@ -1275,2 +1294,3 @@ isleapyear: _isleapyear2.default,

istext: _istext2.default,
istruthy: _istruthy2.default,
isurl: _isurl2.default,

@@ -1277,0 +1297,0 @@ iswholenumber: _iswholenumber2.default,

2

package.json
{
"name": "functionfoundry",
"version": "0.12.2",
"version": "0.12.3",
"description": "Pure function JavaScript library",

@@ -5,0 +5,0 @@ "main": "fn/_index.js",

@@ -6,3 +6,3 @@ import test from 'tape'

t.plan( 124 )
t.plan( 127 )
t.ok( ff.abs, 'abs should be there')

@@ -61,2 +61,4 @@ t.ok( ff.acos, 'acos should be there')

t.ok( ff.iseven, 'iseven should be there')
t.ok( ff.isfalsy, 'isfalsy should be there')
t.ok( ff.isfunction, 'isfunction should be there')
t.ok( ff.isleapyear, 'isleapyear should be there')

@@ -68,2 +70,3 @@ t.ok( ff.isna, 'isna should be there')

t.ok( ff.istext, 'istext should be there')
t.ok( ff.istruthy, 'istruthy should be there')
t.ok( ff.isoweeknum, 'isoweeknum should be there')

@@ -70,0 +73,0 @@ t.ok( ff.isurl, 'isurl should be there')

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