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

@speedy-js/speedy-utils

Package Overview
Dependencies
Maintainers
5
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@speedy-js/speedy-utils - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2-alpha.1

3

lib/index.d.ts

@@ -9,6 +9,3 @@ export * from './parseRequest';

export * from './mapValue';
export * from './parseRequest';
export * from './remapping';
export * from './removeHash';
export * from './removeHash';
export * from './setEnv';

@@ -15,0 +12,0 @@ export * from './union';

@@ -21,6 +21,3 @@ "use strict";

__exportStar(require("./mapValue"), exports);
__exportStar(require("./parseRequest"), exports);
__exportStar(require("./remapping"), exports);
__exportStar(require("./removeHash"), exports);
__exportStar(require("./removeHash"), exports);
__exportStar(require("./setEnv"), exports);

@@ -27,0 +24,0 @@ __exportStar(require("./union"), exports);

1

lib/isEmpty.d.ts
export declare function isEmpty<T>(value: T | null | undefined): value is null;
export declare function isNotEmpty<T>(value: T | null | undefined): value is T;
export declare function filterEmpty<T>(value: T | null | undefined | false): value is T;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNotEmpty = exports.isEmpty = void 0;
exports.filterEmpty = exports.isNotEmpty = exports.isEmpty = void 0;
function isEmpty(value) {

@@ -12,2 +12,6 @@ return value == null;

exports.isNotEmpty = isNotEmpty;
function filterEmpty(value) {
return value !== null && value !== undefined && value !== false;
}
exports.filterEmpty = filterEmpty;
//# sourceMappingURL=isEmpty.js.map
{
"name": "@speedy-js/speedy-utils",
"version": "0.8.1",
"version": "0.8.2-alpha.1",
"description": "",

@@ -9,2 +9,3 @@ "keywords": [],

"main": "./lib/index.js",
"source": "./src/index.ts",
"files": [

@@ -20,4 +21,3 @@ "lib"

"dependencies": {
"@ampproject/remapping": "1.0.2",
"@speedy-js/speedy-types": "0.8.1",
"@speedy-js/speedy-types": "0.8.2-alpha.1",
"chalk": "4.1.0",

@@ -24,0 +24,0 @@ "chrome-launcher": "0.14.2",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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