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

fable-core

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fable-core - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

5

fable-core.js

@@ -1236,2 +1236,7 @@ /* global define */

};
Seq.rangeChar = function (first, last) {
return Seq.unfold(function (x) {
return (x <= last) ? [x, String.fromCharCode(x.charCodeAt(0) + 1)] : null;
}, first);
};
Seq.range = function (first, last) {

@@ -1238,0 +1243,0 @@ return Seq.rangeStep(first, 1, last);

2

package.json
{
"name": "fable-core",
"version": "0.0.10",
"version": "0.0.11",
"description": "Fable core lib & bindings for native JS objects, browser and node APIs",

@@ -5,0 +5,0 @@ "main": "fable-core.js",

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