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

fairmont

Package Overview
Dependencies
Maintainers
3
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fairmont - npm Package Compare versions

Comparing version 1.0.0-beta-06 to 1.0.0-beta-07

11

lib/multimethods.js
// Generated by CoffeeScript 1.9.2
(function() {
var _, assert, create, define, describe, dispatch, method, ref,
var Method, _, assert, define, describe, dispatch, method, ref,
slice = [].slice,

@@ -35,3 +35,3 @@ extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },

p += 2;
} else if (term.constructor === Function && (term(argument))) {
} else if (term.constructor === Function && (term(argument)) === true) {
p += 5;

@@ -77,6 +77,9 @@ } else {

create = method;
Method = {
create: method,
define: define
};
module.exports = {
create: create,
Method: Method,
method: method,

@@ -83,0 +86,0 @@ define: define

{
"name": "fairmont",
"version": "1.0.0-beta-06",
"version": "1.0.0-beta-07",
"description": "A collection of useful functions and utilities.",

@@ -5,0 +5,0 @@ "files": [

@@ -43,2 +43,3 @@ # Fairmont

* [String][string]
* [Multimethods][multi]
* [Other][misc]

@@ -58,6 +59,7 @@

[misc]:src/index.litcoffee
[multi]:src/multimethods.litcoffee
## Status
Fairmont is still under heavy development and is `alpha` quality, meaning you should probably not use it in your production code.
Fairmont is still under heavy development and is `beta` quality, meaning you should probably not use it in your production code.

@@ -64,0 +66,0 @@ ## Roadmap

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