Socket
Socket
Sign inDemoInstall

fairmont-core

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fairmont-core - npm Package Compare versions

Comparing version 1.0.0-beta-23 to 1.0.0

14

lib/index.js
// Generated by CoffeeScript 1.10.0
(function() {
var _, apply, binary, compose, curry, flip, identity, negate, noOp, partial, pipe, spread, substitute, ternary, unary, wrap,
var _, apply, binary, compose, curry, flip, identity, negate, noOp, once, partial, pipe, spread, substitute, ternary, unary, wrap,
slice = [].slice;

@@ -155,2 +155,11 @@

once = function(f) {
return function() {
var k;
k = f();
f = wrap(k);
return k;
};
};
module.exports = {

@@ -172,5 +181,6 @@ noOp: noOp,

apply: apply,
negate: negate
negate: negate,
once: once
};
}).call(this);

7

package.json
{
"name": "fairmont-core",
"version": "1.0.0-beta-23",
"version": "1.0.0",
"description": "Functional reactive programming in JavaScript",

@@ -12,7 +12,6 @@ "files": [

"scripts": {
"prepublish": "coffee -o lib/ -c src/*.*coffee",
"test": "coffee test/index.coffee",
"watch": "coffee -o lib/ -cw src/*.*coffee",
"version": "(node_modules/.bin/json -f package.json version > VERSION)",
"tag": "(cat VERSION | xargs -I version git tag -am version version) && git push --tags"
"prepublish": "coffee -o lib/ -c src/*.*coffee",
"postpublish": "(node_modules/.bin/json -f package.json version | xargs -I version git tag -am version version) && git push --tags"
},

@@ -19,0 +18,0 @@ "repository": {

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