@timberio/tools
Advanced tools
Comparing version 0.1.0 to 0.2.0
import { IQueue } from "./types"; | ||
import Queue from "./queue"; | ||
import makeThrottle from "./throttle"; | ||
export { IQueue, makeThrottle }; | ||
export { IQueue, Queue, makeThrottle }; |
@@ -6,4 +6,6 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const queue_1 = __importDefault(require("./queue")); | ||
exports.Queue = queue_1.default; | ||
const throttle_1 = __importDefault(require("./throttle")); | ||
exports.makeThrottle = throttle_1.default; | ||
//# sourceMappingURL=index.js.map |
import { IQueue } from "./types"; | ||
import Queue from "./queue"; | ||
import makeThrottle from "./throttle"; | ||
export { IQueue, makeThrottle }; | ||
export { IQueue, Queue, makeThrottle }; |
@@ -0,5 +1,8 @@ | ||
import Queue from "./queue"; | ||
import makeThrottle from "./throttle"; | ||
export { | ||
// Classes | ||
Queue, | ||
// Functions | ||
makeThrottle }; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@timberio/tools", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Javascript logging tools", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js", |
import { IQueue } from "./types"; | ||
import Queue from "./queue"; | ||
import makeThrottle from "./throttle"; | ||
@@ -7,4 +8,6 @@ | ||
IQueue, | ||
// Classes | ||
Queue, | ||
// Functions | ||
makeThrottle | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
51755
956