@unction/isobject
Advanced tools
Comparing version 6.11.0 to 6.12.0
{ | ||
"name": "@unction/isobject", | ||
"version": "6.11.0", | ||
"version": "6.12.0", | ||
"description": "Takes a value and determines if it's an object", | ||
@@ -23,3 +23,3 @@ "keywords": [ | ||
"browser": "browser.js", | ||
"types": "types.d.ts", | ||
"types": "types/index.d.ts", | ||
"files": [ | ||
@@ -43,29 +43,25 @@ "index.ts", | ||
"devDependencies": { | ||
"@babel/cli": "^7.10.5", | ||
"@babel/core": "^7.11.4", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.11.0", | ||
"@babel/plugin-syntax-dynamic-import": "7.x", | ||
"@babel/preset-env": "^7.11.0", | ||
"@babel/preset-typescript": "^7.10.4", | ||
"@babel/register": "^7.10.5", | ||
"@types/jest": "24.x", | ||
"@types/node": "^14.0.18", | ||
"babel-eslint": "10.x", | ||
"babel-jest": "24.x", | ||
"babel-plugin-annotate-console-log": "1.x", | ||
"babel-plugin-module-resolver": "3.x", | ||
"babel-preset-minify": "0.5.x", | ||
"core-js": "^3.6.5", | ||
"eslint": "5.x", | ||
"eslint-import-resolver-babel-module": "5.x", | ||
"@babel/cli": "^7.12.8", | ||
"@babel/core": "^7.12.9", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.12.1", | ||
"@babel/preset-env": "^7.12.7", | ||
"@babel/preset-typescript": "^7.12.7", | ||
"@types/jest": "^26.0.15", | ||
"@types/node": "^14.14.10", | ||
"babel-jest": "^26.6.3", | ||
"babel-plugin-annotate-console-log": "^1.0.0", | ||
"babel-preset-minify": "^0.5.1", | ||
"core-js": "^3.8.0", | ||
"eslint": "^7.14.0", | ||
"eslint-import-resolver-babel-module": "^5.2.0", | ||
"eslint-plugin-babel": "^5.3.1", | ||
"eslint-plugin-jest": "22.x", | ||
"eslint-plugin-promise": "4.x", | ||
"jest": "24.x", | ||
"jest-extended": "0.11.x", | ||
"typescript": "^4.0.2" | ||
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"jest": "^26.6.3", | ||
"jest-extended": "^0.11.5", | ||
"typescript": "^4.1.2" | ||
}, | ||
"dependencies": { | ||
"@unction/istype": "^6.11.0" | ||
"@unction/istype": "^6.12.0" | ||
} | ||
} |
import {MapperFunctionType} from "./MapperFunctionType"; | ||
import {EnumerableType} from "./EnumerableType"; | ||
export type FoldFunctionType<A, B> = (a: MapperFunctionType<A, B>) => (b: EnumerableType<A>) => B | ||
export type FoldFunctionType<A, B> = (a: MapperFunctionType<A, B>) => (b: Array<B> | Set<B> | Record<string | number | symbol, B> | Map<unknown, B> | string) => B |
export {DOMEventType} from "./DOMEventType"; | ||
export {EnumerableType} from "./EnumerableType"; | ||
export {FoldFunctionType} from "./FoldFunctionType"; | ||
export {KeyChainType} from "./KeyChainType"; | ||
export {KeyedEnumerableType} from "./KeyedEnumerableType"; | ||
export {ListType} from "./ListType"; | ||
export {MapperFunctionType} from "./MapperFunctionType"; | ||
export {OrderedEnumerableType} from "./OrderedEnumerableType"; | ||
export {PredicateFunctionType} from "./PredicateFunctionType"; | ||
export {RecordType} from "./RecordType"; | ||
export {ReducerFunctionType} from "./ReducerFunctionType"; | ||
export {ValueKeyReducerFunctionType} from "./ValueKeyReducerFunctionType"; | ||
export {ObjectType} from "./ObjectType"; | ||
export {TextType} from "./TextType"; | ||
export {UnfinishedKeyChainType} from "./UnfinishedKeyChainType"; | ||
export {UnorderedEnumerableType} from "./UnorderedEnumerableType"; |
{ | ||
"name": "types", | ||
"name": "@unction/types", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": ".eslintrc.js", | ||
"description": "A collection of all the unction types", | ||
"main": "index.js", | ||
"dependencies": {}, | ||
@@ -7,0 +7,0 @@ "devDependencies": { |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
19
14460
16
31
1
Updated@unction/istype@^6.12.0