Socket
Socket
Sign inDemoInstall

@mathigon/core

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mathigon/core - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

2

package.json
{
"name": "@mathigon/core",
"version": "0.6.0",
"version": "0.6.1",
"description": "TypeScript utilities library containing function wrappers, string and array helper functions, event classes and color utilities.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -75,4 +75,4 @@ // =============================================================================

export function defer<T = void>() {
let resolve: ((arg?: T) => void) = () => undefined;
let reject: ((arg?: any) => void) = () => undefined;
let resolve: ((value?: T | PromiseLike<T>) => void) = () => undefined;
let reject: ((reason?: any) => void) = () => undefined;

@@ -79,0 +79,0 @@ const promise = new Promise<T>((_resolve, _reject) => {

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