Comparing version 3.5.2 to 3.5.3
@@ -5,2 +5,7 @@ # Changelog | ||
## [3.5.3][] - 2021-05-05 | ||
- Implement 'toLowerCamel' and 'toUpperCamel' | ||
- Package maintenance and update dependencies | ||
## [3.5.2][] - 2021-04-20 | ||
@@ -58,3 +63,4 @@ | ||
[unreleased]: https://github.com/metarhia/metautil/compare/v3.5.2...HEAD | ||
[unreleased]: https://github.com/metarhia/metautil/compare/v3.5.3...HEAD | ||
[3.5.3]: https://github.com/metarhia/metautil/compare/v3.5.2...v3.5.3 | ||
[3.5.2]: https://github.com/metarhia/metautil/compare/v3.5.1...v3.5.2 | ||
@@ -61,0 +67,0 @@ [3.5.1]: https://github.com/metarhia/metautil/compare/v3.5.0...v3.5.1 |
@@ -70,2 +70,6 @@ 'use strict'; | ||
const toLowerCamel = (s) => s.charAt(0).toLowerCase() + s.slice(1); | ||
const toUpperCamel = (s) => s.charAt(0).toUpperCase() + s.slice(1); | ||
const isConstant = (s) => s === s.toUpperCase(); | ||
@@ -185,2 +189,4 @@ | ||
isFirstUpper, | ||
toLowerCamel, | ||
toUpperCamel, | ||
isConstant, | ||
@@ -187,0 +193,0 @@ nowDate, |
{ | ||
"name": "metautil", | ||
"version": "3.5.2", | ||
"version": "3.5.3", | ||
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>", | ||
@@ -41,6 +41,6 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^14.14.41", | ||
"eslint": "^7.24.0", | ||
"@types/node": "^15.0.2", | ||
"eslint": "^7.25.0", | ||
"eslint-config-metarhia": "^7.0.1", | ||
"eslint-config-prettier": "^8.2.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
@@ -47,0 +47,0 @@ "eslint-plugin-prettier": "^3.4.0", |
@@ -29,2 +29,4 @@ import { EventEmitter } from 'events'; | ||
export function isFirstUpper(s: string): boolean; | ||
export function toLowerCamel(s: string): string; | ||
export function toUpperCamel(s: string): string; | ||
export function isConstant(s: string): boolean; | ||
@@ -31,0 +33,0 @@ export function nowDate(date?: Date): string; |
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
17067
396