-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathstring-utils.ts
63 lines (58 loc) · 1.88 KB
/
string-utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
* @license
* Copyright (c) 2016, Contributors
* SPDX-License-Identifier: ISC
*/
export function camelCase (str: string): string {
// Handle the case where an argument is provided as camel case, e.g., fooBar.
// by ensuring that the string isn't already mixed case:
const isCamelCase = str !== str.toLowerCase() && str !== str.toUpperCase()
if (!isCamelCase) {
str = str.toLowerCase()
}
if (str.indexOf('-') === -1 && str.indexOf('_') === -1) {
return str
} else {
let camelcase = ''
let nextChrUpper = false
const leadingHyphens = str.match(/^-+/)
for (let i = leadingHyphens ? leadingHyphens[0].length : 0; i < str.length; i++) {
let chr = str.charAt(i)
if (nextChrUpper) {
nextChrUpper = false
chr = chr.toUpperCase()
}
if (i !== 0 && (chr === '-' || chr === '_')) {
nextChrUpper = true
} else if (chr !== '-' && chr !== '_') {
camelcase += chr
}
}
return camelcase
}
}
export function decamelize (str: string, joinString?: string): string {
const lowercase = str.toLowerCase()
joinString = joinString || '-'
let notCamelcase = ''
for (let i = 0; i < str.length; i++) {
const chrLower = lowercase.charAt(i)
const chrString = str.charAt(i)
if (chrLower !== chrString && i > 0) {
notCamelcase += `${joinString}${lowercase.charAt(i)}`
} else {
notCamelcase += chrString
}
}
return notCamelcase
}
export function looksLikeNumber (x: null | undefined | number | string): boolean {
if (x === null || x === undefined) return false
// if loaded from config, may already be a number.
if (typeof x === 'number') return true
// hexadecimal.
if (/^0x[0-9a-f]+$/i.test(x)) return true
// don't treat 0123 as a number; as it drops the leading '0'.
if (/^0[^.]/.test(x)) return false
return /^[-]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x)
}