@phensley/cldr-utils
Advanced tools
Comparing version 0.11.3-alpha.0 to 0.11.3
@@ -42,2 +42,3 @@ var DEFAULT_CAPACITY = 100; | ||
var old = this.root.prev; | ||
/* istanbul ignore else */ | ||
if (old !== undefined) { | ||
@@ -77,2 +78,3 @@ this.storage.delete(old.key); | ||
e.next = n; | ||
/* istanbul ignore else */ | ||
if (n) { | ||
@@ -84,5 +86,7 @@ n.prev = e; | ||
LRU.prototype.remove = function (n) { | ||
/* istanbul ignore else */ | ||
if (n.prev) { | ||
n.prev.next = n.next; | ||
} | ||
/* istanbul ignore else */ | ||
if (n.next) { | ||
@@ -89,0 +93,0 @@ n.next.prev = n.prev; |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./cache")); | ||
__export(require("./decoding")); | ||
__export(require("./encoding")); | ||
__export(require("./lru")); | ||
__export(require("./search")); | ||
var tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./cache"), exports); | ||
tslib_1.__exportStar(require("./decoding"), exports); | ||
tslib_1.__exportStar(require("./encoding"), exports); | ||
tslib_1.__exportStar(require("./lru"), exports); | ||
tslib_1.__exportStar(require("./search"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -44,2 +44,3 @@ "use strict"; | ||
var old = this.root.prev; | ||
/* istanbul ignore else */ | ||
if (old !== undefined) { | ||
@@ -79,2 +80,3 @@ this.storage.delete(old.key); | ||
e.next = n; | ||
/* istanbul ignore else */ | ||
if (n) { | ||
@@ -86,5 +88,7 @@ n.prev = e; | ||
LRU.prototype.remove = function (n) { | ||
/* istanbul ignore else */ | ||
if (n.prev) { | ||
n.prev.next = n.next; | ||
} | ||
/* istanbul ignore else */ | ||
if (n.next) { | ||
@@ -91,0 +95,0 @@ n.next.prev = n.prev; |
{ | ||
"name": "@phensley/cldr-utils", | ||
"version": "0.11.3-alpha.0", | ||
"version": "0.11.3", | ||
"description": "Utilities for cldr-engine packages", | ||
@@ -61,3 +61,6 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "b298d97fa3624770fc1ffbabc7d88911e4f35fcb" | ||
"dependencies": { | ||
"tslib": "^1.9.3" | ||
}, | ||
"gitHead": "30e640852cd5fa3cfc78259b6c1d9f3be8e1afdc" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
60555
847
1
+ Addedtslib@^1.9.3
+ Addedtslib@1.14.1(transitive)