@phosphor/algorithm
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -42,3 +42,3 @@ "use strict"; | ||
*/ | ||
var ChainIterator = (function () { | ||
var ChainIterator = /** @class */ (function () { | ||
/** | ||
@@ -45,0 +45,0 @@ * Construct a new chain iterator. |
@@ -0,0 +0,0 @@ import { IIterator } from './iter'; |
@@ -24,3 +24,3 @@ "use strict"; | ||
*/ | ||
var EmptyIterator = (function () { | ||
var EmptyIterator = /** @class */ (function () { | ||
/** | ||
@@ -27,0 +27,0 @@ * Construct a new empty iterator. |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -38,3 +38,3 @@ "use strict"; | ||
*/ | ||
var FilterIterator = (function () { | ||
var FilterIterator = /** @class */ (function () { | ||
/** | ||
@@ -41,0 +41,0 @@ * Construct a new filter iterator. |
@@ -0,0 +0,0 @@ import { IterableOrArrayLike } from './iter'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export * from './array'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
@@ -175,3 +175,3 @@ "use strict"; | ||
*/ | ||
var ArrayIterator = (function () { | ||
var ArrayIterator = /** @class */ (function () { | ||
/** | ||
@@ -178,0 +178,0 @@ * Construct a new array iterator. |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -38,3 +38,3 @@ "use strict"; | ||
*/ | ||
var MapIterator = (function () { | ||
var MapIterator = /** @class */ (function () { | ||
/** | ||
@@ -41,0 +41,0 @@ * Construct a new map iterator. |
@@ -0,0 +0,0 @@ import { IIterator } from './iter'; |
@@ -34,3 +34,3 @@ "use strict"; | ||
*/ | ||
var RangeIterator = (function () { | ||
var RangeIterator = /** @class */ (function () { | ||
/** | ||
@@ -37,0 +37,0 @@ * Construct a new range iterator. |
@@ -0,0 +0,0 @@ import { IterableOrArrayLike } from './iter'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IIterator } from './iter'; |
@@ -48,3 +48,3 @@ "use strict"; | ||
*/ | ||
var RepeatIterator = (function () { | ||
var RepeatIterator = /** @class */ (function () { | ||
/** | ||
@@ -51,0 +51,0 @@ * Construct a new repeat iterator. |
@@ -0,0 +0,0 @@ import { IIterator } from './iter'; |
@@ -38,3 +38,3 @@ "use strict"; | ||
*/ | ||
var RetroArrayIterator = (function () { | ||
var RetroArrayIterator = /** @class */ (function () { | ||
/** | ||
@@ -41,0 +41,0 @@ * Construct a new retro iterator. |
@@ -0,0 +0,0 @@ import { IterableOrArrayLike } from './iter'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -39,3 +39,3 @@ "use strict"; | ||
*/ | ||
var StrideIterator = (function () { | ||
var StrideIterator = /** @class */ (function () { | ||
/** | ||
@@ -42,0 +42,0 @@ * Construct a new stride iterator. |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -32,3 +32,3 @@ "use strict"; | ||
*/ | ||
var TakeIterator = (function () { | ||
var TakeIterator = /** @class */ (function () { | ||
/** | ||
@@ -35,0 +35,0 @@ * Construct a new take iterator. |
@@ -0,0 +0,0 @@ import { IIterator, IterableOrArrayLike } from './iter'; |
@@ -43,3 +43,3 @@ "use strict"; | ||
*/ | ||
var ZipIterator = (function () { | ||
var ZipIterator = /** @class */ (function () { | ||
/** | ||
@@ -46,0 +46,0 @@ * Construct a new zip iterator. |
{ | ||
"name": "@phosphor/algorithm", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "PhosphorJS - Algorithms and Iterators", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"homepage": "https://github.com/phosphorjs/phosphor", | ||
"bugs": { | ||
"url": "https://github.com/phosphorjs/phosphor/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "S. Chris Colbert <sccolbert@gmail.com>", | ||
"contributors": [ | ||
"A. Darian <git@darian.af>", | ||
"Dave Willmer <dave.willmer@gmail.com>", | ||
"S. Chris Colbert <sccolbert@gmail.com>", | ||
"Steven Silvester <steven.silvester@gmail.com>" | ||
], | ||
"files": [ | ||
@@ -11,16 +21,7 @@ "lib/*.d.ts", | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"directories": { | ||
"lib": "lib/" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"rimraf": "^2.5.2", | ||
"typedoc": "^0.7.0", | ||
"typescript": "~2.3.0" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rimraf lib", | ||
"docs": "typedoc --options tdoptions.json ." | ||
}, | ||
"repository": { | ||
@@ -30,14 +31,30 @@ "type": "git", | ||
}, | ||
"author": "S. Chris Colbert <sccolbert@gmail.com>", | ||
"contributors": [ | ||
"A. Darian <git@darian.af>", | ||
"Dave Willmer <dave.willmer@gmail.com>", | ||
"S. Chris Colbert <sccolbert@gmail.com>", | ||
"Steven Silvester <steven.silvester@gmail.com>" | ||
], | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/phosphorjs/phosphor/issues" | ||
"scripts": { | ||
"build": "tsc --build", | ||
"build:test": "tsc --build tests && cd tests && webpack", | ||
"clean": "rimraf lib", | ||
"clean:test": "rimraf tests/build", | ||
"docs": "typedoc --options tdoptions.json src", | ||
"test": "npm run test:firefox", | ||
"test:chrome": "cd tests && karma start --browsers=Chrome", | ||
"test:firefox": "cd tests && karma start --browsers=Firefox", | ||
"test:ie": "cd tests && karma start --browsers=IE", | ||
"watch": "tsc --build --watch" | ||
}, | ||
"homepage": "https://github.com/phosphorjs/phosphor" | ||
"devDependencies": { | ||
"@types/chai": "^3.4.35", | ||
"@types/mocha": "^2.2.39", | ||
"chai": "^3.5.0", | ||
"karma": "^1.5.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-firefox-launcher": "^1.0.0", | ||
"karma-ie-launcher": "^1.0.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-mocha-reporter": "^2.2.2", | ||
"mocha": "^3.2.0", | ||
"rimraf": "^2.5.2", | ||
"typedoc": "~0.12.0", | ||
"typescript": "~3.0.3", | ||
"webpack": "^2.2.1" | ||
} | ||
} |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
151615
14
1