Socket
Socket
Sign inDemoInstall

@furystack/utils

Package Overview
Dependencies
Maintainers
1
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@furystack/utils - npm Package Compare versions

Comparing version 1.1.16 to 1.1.17

0

dist/debounce.d.ts

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

export {};
//# sourceMappingURL=deep-merge.spec.d.ts.map

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { Disposable } from './disposable';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

import './filter-async';
//# sourceMappingURL=filter-async.spec.d.ts.map

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ export * from './disposable';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { Disposable } from './disposable';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { RetrierOptions } from './retrier-options';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { Disposable } from './disposable';

@@ -0,0 +0,0 @@ "use strict";

export declare const traceTests: void;
//# sourceMappingURL=trace.spec.d.ts.map

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

export {};
//# sourceMappingURL=tuple.spec.d.ts.map

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { Disposable } from './disposable';

@@ -0,0 +0,0 @@ "use strict";

6

package.json
{
"name": "@furystack/utils",
"version": "1.1.16",
"version": "1.1.17",
"description": "General utilities",

@@ -35,7 +35,7 @@ "main": "dist/index.js",

},
"homepage": "https://github.com/furystack",
"homepage": "https://github.com/furystack/furystack",
"devDependencies": {
"@types/jest": "^25.2.1"
},
"gitHead": "86ed76b9e1ff6d22d9b696356b4f5f1a6949611b"
"gitHead": "dced3c2d9c9b34ca346ac86ef59610ba1b7de846"
}

@@ -0,0 +0,0 @@ # @furystack/utils

@@ -0,0 +0,0 @@ import { debounce } from './debounce'

@@ -8,3 +8,3 @@ /**

export const debounce = <TArgs extends unknown[], TReturns>(method: (...args: TArgs) => TReturns, debounceMs = 250) => {
let timeout: number | undefined
let timeout: ReturnType<typeof setTimeout> | undefined
return ((...args: TArgs) => {

@@ -16,3 +16,3 @@ if (timeout) {

method(...args)
clearTimeout(timeout)
clearTimeout(timeout as any)
timeout = undefined

@@ -19,0 +19,0 @@ }, debounceMs)

@@ -0,0 +0,0 @@ import { deepMerge } from './deep-merge'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ import { using, usingAsync, Disposable } from './disposable'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ import './filter-async'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ export * from './disposable'

@@ -0,0 +0,0 @@ import { ObservableValue } from './observable-value'

@@ -0,0 +0,0 @@ import { Disposable } from './disposable'

@@ -0,0 +0,0 @@ import { PathHelper } from './path-helper'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ import { RetrierOptions } from './retrier-options'

@@ -0,0 +0,0 @@ import { Retrier } from './retrier'

@@ -0,0 +0,0 @@ import { sleepAsync } from './sleep-async'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ import { Trace } from './trace'

@@ -0,0 +0,0 @@ import { Disposable } from './disposable'

@@ -0,0 +0,0 @@ import { tuple } from './tuple'

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ import { Disposable } from './disposable'

Sorry, the diff of this file is not supported yet

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