New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@engervall/shared

Package Overview
Dependencies
Maintainers
0
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@engervall/shared - npm Package Compare versions

Comparing version 1.0.29 to 1.0.30

2

dist/utils/upper-case-first-character-all-words.d.ts

@@ -1,1 +0,1 @@

export declare function upperCaseFirstCharacterAllWords(str: string): string;
export declare function upperCaseFirstCharacterAllWords(str: string, separator?: string): string;

@@ -5,4 +5,4 @@ "use strict";

const upper_case_first_character_1 = require("./upper-case-first-character");
function upperCaseFirstCharacterAllWords(str) {
return str.split(' ').map(upper_case_first_character_1.upperCaseFirstCharacter).join(' ');
function upperCaseFirstCharacterAllWords(str, separator = ' ') {
return str.split(separator).map(upper_case_first_character_1.upperCaseFirstCharacter).join(' ');
}
{
"name": "@engervall/shared",
"version": "1.0.29",
"version": "1.0.30",
"main": "dist/index.js",

@@ -27,3 +27,3 @@ "repository": "git@github.com:erikengervall/gigalib.git",

},
"gitHead": "0c22a94d4570ca6145e3373671b805ad1aa14f5a"
"gitHead": "94dadebd0caf2f22aca98c2a95881aece74544f1"
}
import { upperCaseFirstCharacter } from './upper-case-first-character';
export function upperCaseFirstCharacterAllWords(str: string) {
return str.split(' ').map(upperCaseFirstCharacter).join(' ');
export function upperCaseFirstCharacterAllWords(str: string, separator = ' ') {
return str.split(separator).map(upperCaseFirstCharacter).join(' ');
}
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