{"id":15889080,"url":"https://github.com/arshadkazmi42/deep-eq-skip","last_synced_at":"2025-08-14T06:31:57.975Z","repository":{"id":44849001,"uuid":"172186618","full_name":"arshadkazmi42/deep-eq-skip","owner":"arshadkazmi42","description":"Validates two jsons with skipping keys","archived":false,"fork":false,"pushed_at":"2022-07-27T13:41:30.000Z","size":117,"stargazers_count":2,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-03T20:14:32.776Z","etag":null,"topics":["array","array-equal","deep-equal","equal","json","object","object-equal","string-equal"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arshadkazmi42.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"arshadkazmi42"}},"created_at":"2019-02-23T07:44:00.000Z","updated_at":"2022-07-27T13:51:43.000Z","dependencies_parsed_at":"2022-09-01T20:02:11.730Z","dependency_job_id":null,"html_url":"https://github.com/arshadkazmi42/deep-eq-skip","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/arshadkazmi42/deep-eq-skip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshadkazmi42%2Fdeep-eq-skip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshadkazmi42%2Fdeep-eq-skip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshadkazmi42%2Fdeep-eq-skip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshadkazmi42%2Fdeep-eq-skip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arshadkazmi42","download_url":"https://codeload.github.com/arshadkazmi42/deep-eq-skip/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshadkazmi42%2Fdeep-eq-skip/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269693503,"owners_count":24460244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["array","array-equal","deep-equal","equal","json","object","object-equal","string-equal"],"created_at":"2024-10-06T06:41:09.701Z","updated_at":"2025-08-14T06:31:57.564Z","avatar_url":"https://github.com/arshadkazmi42.png","language":"JavaScript","funding_links":["https://github.com/sponsors/arshadkazmi42"],"categories":[],"sub_categories":[],"readme":"# deep-eq-skip\n\n[![Build](https://github.com/arshadkazmi42/deep-eq-skip/actions/workflows/nodejs.yml/badge.svg)](https://github.com/arshadkazmi42/deep-eq-skip/actions/workflows/nodejs.yml)\n[![NPM Version](https://img.shields.io/npm/v/deep-eq-skip.svg)](https://www.npmjs.com/package/deep-eq-skip)\n[![NPM Downloads](https://img.shields.io/npm/dt/deep-eq-skip.svg)](https://www.npmjs.com/package/deep-eq-skip)\n[![Github Repo Size](https://img.shields.io/github/repo-size/arshadkazmi42/deep-eq-skip.svg)](https://github.com/arshadkazmi42/deep-eq-skip)\n[![LICENSE](https://img.shields.io/npm/l/deep-eq-skip.svg)](https://github.com/arshadkazmi42/deep-eq-skip/blob/master/LICENSE)\n[![Contributors](https://img.shields.io/github/contributors/arshadkazmi42/deep-eq-skip.svg)](https://github.com/arshadkazmi42/deep-eq-skip/graphs/contributors)\n[![Commit](https://img.shields.io/github/last-commit/arshadkazmi42/deep-eq-skip.svg)](https://github.com/arshadkazmi42/deep-eq-skip/commits/master)\n\nValidates two jsons with skipping keys\n\n\u003e Give us a :star: if you like our work :heart:\n\n## Install\n\n```\n$ npm install deep-eq-skip --save\n```\n\n## Usage\n\n```javascript\nconst deepEqSkip = require('deep-eq-skip');\n\nconst GIVEN_JSON = {\n  'name': 'deep-eq-skip',\n  'author': 'Arshad Kazmi',\n  'repository': {\n    'url': 'https://github.com/arshadkazmi42/deep-eq-skip',\n    'language': 'js'\n  }\n};\n\nconst EXPECTED_JSON = {\n  'name': 'deep-equal-skip',\n  'author': 'Arshad Kazmi',\n  'repository': {\n    'url': 'https://github.com/arshadkazmi42/deep-equal-skip',\n    'language': 'js'\n  }\n};\n\nconst isEqual = deepEqSkip(GIVEN_JSON, EXPECTED_JSON, ['name', 'url']);\n// Output -\u003e true\n\nconst isEqual = deepEqSkip(GIVEN_JSON, EXPECTED_JSON, []);\n// Throws error: Expected \"deep-equal-skip\" found \"deep-eq-skip\"\n\nconst isEqual = deepEqSkip([1, 2, 3], { name: 1});\n// Throws error: Expected undefined found 1\n\nconst isEqual = deepEqSkip('deep-eq-skip', 'deep-eq-skip');\n// Output -\u003e true\n```\n\n## Contributing\n\nInterested in contributing to this project?\nYou can log any issues or suggestion related to this library [here](https://github.com/arshadkazmi42/deep-eq-skip/issues/new)\n\nRead our contributing [guide](CONTRIBUTING.md) on getting started with contributing to the codebase\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farshadkazmi42%2Fdeep-eq-skip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farshadkazmi42%2Fdeep-eq-skip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farshadkazmi42%2Fdeep-eq-skip/lists"}