Comparing version 0.4.1 to 0.5.0
{ | ||
"name": "lazy-ass", | ||
"main": "index.js", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"homepage": "https://github.com/bahmutov/lazy-ass", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -75,4 +75,6 @@ (function initLazyAss() { | ||
register(lazyAss, 'lazyAss'); | ||
register(lazyAss, 'la'); | ||
register(lazyAssync, 'lazyAssync'); | ||
register(lazyAssync, 'lac'); | ||
}()); |
{ | ||
"name": "lazy-ass", | ||
"description": "Lazy assertions without performance penalty", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>", | ||
@@ -6,0 +6,0 @@ "bugs": { |
@@ -1,2 +0,2 @@ | ||
/* global lazyAss */ | ||
/* global lazyAss, la */ | ||
if (typeof window === 'undefined') { | ||
@@ -19,2 +19,6 @@ require('..'); // Node | ||
it('has alias', function () { | ||
expect(la).to.be.a('function'); | ||
}); | ||
it('does not throw if condition is true', function () { | ||
@@ -21,0 +25,0 @@ expect(function () { |
@@ -1,2 +0,2 @@ | ||
/* global lazyAssync */ | ||
/* global lazyAssync, lac */ | ||
if (typeof window === 'undefined') { | ||
@@ -19,2 +19,6 @@ require('..'); // Node | ||
it('has alias', function () { | ||
expect(lac).to.be.a('function'); | ||
}); | ||
it('does not throw if condition is true', function () { | ||
@@ -21,0 +25,0 @@ expect(function () { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22685
395