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

@loadmill/universal

Package Overview
Dependencies
Maintainers
2
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loadmill/universal - npm Package Compare versions

Comparing version 0.3.18 to 0.3.19

1

dist/string-utils.d.ts
export declare const split: (line: string) => string[];
export declare const escape: (s: string) => string;
export declare const nodeBtoa: (str?: string) => string;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.escape = exports.split = void 0;
exports.nodeBtoa = exports.escape = exports.split = void 0;
// split("foo 'bar baz'")

@@ -64,2 +64,7 @@ // ["foo", "bar baz"]

exports.escape = escape;
var nodeBtoa = function (str) {
if (str === void 0) { str = ''; }
return Buffer.from(str).toString('base64');
};
exports.nodeBtoa = nodeBtoa;
//# sourceMappingURL=string-utils.js.map

2

package.json
{
"name": "@loadmill/universal",
"version": "0.3.18",
"version": "0.3.19",
"description": "Loadmill universal utilities",

@@ -5,0 +5,0 @@ "main": "dist/",

@@ -61,1 +61,3 @@ // split("foo 'bar baz'")

};
export const nodeBtoa = (str = '') => Buffer.from(str).toString('base64');

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