Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

metautil

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metautil - npm Package Compare versions

Comparing version 3.5.2 to 3.5.3

8

CHANGELOG.md

@@ -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,

8

package.json
{
"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;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc