@alwatr/polyfill-has-own
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -6,2 +6,8 @@ # Change Log | ||
## [1.0.2](https://github.com/Alwatr/nanolib/compare/@alwatr/polyfill-has-own@1.0.1...@alwatr/polyfill-has-own@1.0.2) (2024-01-31) | ||
### Miscellaneous Chores | ||
* **deps:** update ([1a45030](https://github.com/Alwatr/nanolib/commit/1a450305440b710a300787d4ca24b1ed8c6a39d7)) by @AliMD | ||
## [1.0.1](https://github.com/Alwatr/nanolib/compare/@alwatr/polyfill-has-own@1.0.0...@alwatr/polyfill-has-own@1.0.1) (2024-01-24) | ||
@@ -15,6 +21,6 @@ | ||
* **polyfill-has-own:** new package ([9c3582b](https://github.com/Alwatr/nanolib/commit/9c3582bcfdacde324ac94f46a15e00cd5fef73e8)) by @njfamirm | ||
- **polyfill-has-own:** new package ([9c3582b](https://github.com/Alwatr/nanolib/commit/9c3582bcfdacde324ac94f46a15e00cd5fef73e8)) by @njfamirm | ||
### Miscellaneous Chores | ||
* **has-own-polyfill:** bump version ([36a6529](https://github.com/Alwatr/nanolib/commit/36a65297215b425593c19ce38ed3fbd907c8fc84)) by @ | ||
- **has-own-polyfill:** bump version ([36a6529](https://github.com/Alwatr/nanolib/commit/36a65297215b425593c19ce38ed3fbd907c8fc84)) by @ |
{ | ||
"name": "@alwatr/polyfill-has-own", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A polyfill for `Object.hasOwn`.", | ||
@@ -70,9 +70,9 @@ "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>", | ||
"devDependencies": { | ||
"@alwatr/nano-build": "^1.3.2", | ||
"@alwatr/nano-build": "^1.3.3", | ||
"@alwatr/prettier-config": "^1.0.4", | ||
"@alwatr/tsconfig-base": "^1.1.1", | ||
"@types/node": "^20.11.6", | ||
"@alwatr/tsconfig-base": "^1.1.2", | ||
"@types/node": "^20.11.13", | ||
"typescript": "^5.3.3" | ||
}, | ||
"gitHead": "3486060abc5f331a3b8c78da7f1d671ba1139b5d" | ||
"gitHead": "54726b7ac06d4a6ffb42731b58e8d976de1211bd" | ||
} |
@@ -24,4 +24,4 @@ # Object.hasOwn Polyfill | ||
const obj = { foo: 'bar' }; | ||
const obj = {foo: 'bar'}; | ||
obj.hasOwn('foo'); // true | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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
6191