fast-is-equal
Version:
Blazing-fast equality checks, minus the baggage. A lean, standalone alternative to Lodash's isEqual—because speed matters.
45 lines (44 loc) • 1.21 kB
JSON
{
"name": "fast-is-equal",
"version": "1.0.3",
"description": "Blazing-fast equality checks, minus the baggage. A lean, standalone alternative to Lodash's isEqual—because speed matters.",
"keywords": [
"lodash",
"isEqual",
"typescript",
"react",
"react-native"
],
"homepage": "https://github.com/JairajJangle/fast-is-equal#readme",
"bugs": {
"url": "https://github.com/JairajJangle/fast-is-equal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JairajJangle/fast-is-equal.git"
},
"license": "MIT",
"author": "Jairaj Jangle <reachout.jairaj.jangle@gmail.com> (https://github.com/JairajJangle)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build",
"benchmark": "ts-node benchmarks/fastIsEqual.benchmark.ts"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/lodash": "^4.17.16",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.2"
}
}