Skip to content

Commit 567f420

Browse files
committed
Update lib with updated import paths
1 parent 043306b commit 567f420

16 files changed

+16
-16
lines changed

lib/isCompactCase.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Determines if input is a string that does not contain whitespaces.
33
* @example
44
```ts
5-
import isCompactCase from 'tings/isCompactCase'
5+
import isCompactCase from 'tings/lib/isCompactCase'
66
77
isCompactCase('thisiscompact') // true
88
isCompactCase('this is not compact') // false

lib/isCompactCase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
44
* Determines if input is a string that does not contain whitespaces.
55
* @example
66
```ts
7-
import isCompactCase from 'tings/isCompactCase'
7+
import isCompactCase from 'tings/lib/isCompactCase'
88
99
isCompactCase('thisiscompact') // true
1010
isCompactCase('this is not compact') // false

lib/isLowerCase.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Determines if input is a string containing no UPPERcase characters.
33
* @example
44
```ts
5-
import isLowerCase from 'tings/isLowerCase'
5+
import isLowerCase from 'tings/lib/isLowerCase'
66
77
isLowerCase('this is lower') // true
88
isLowerCase('This is not LOWER') // false

lib/isLowerCase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
44
* Determines if input is a string containing no UPPERcase characters.
55
* @example
66
```ts
7-
import isLowerCase from 'tings/isLowerCase'
7+
import isLowerCase from 'tings/lib/isLowerCase'
88
99
isLowerCase('this is lower') // true
1010
isLowerCase('This is not LOWER') // false

lib/isUniq.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Will return true for any input that's not an array.
44
* @example
55
```ts
6-
import isUniq from 'tings/isUniq'
6+
import isUniq from 'tings/lib/isUniq'
77
88
isUniq([1, 2, 3]) // true
99
isUniq([1, 1, 2]) // false

lib/isUniq.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
55
* Will return true for any input that's not an array.
66
* @example
77
```ts
8-
import isUniq from 'tings/isUniq'
8+
import isUniq from 'tings/lib/isUniq'
99
1010
isUniq([1, 2, 3]) // true
1111
isUniq([1, 1, 2]) // false

lib/sleep.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Pauses the current function.
33
* @example
44
```ts
5-
import sleep from 'tings/sleep'
5+
import sleep from 'tings/lib/sleep'
66
77
await sleep(2000) // sleeps for 2 seconds
88
```

lib/sleep.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const toNumberAlways_1 = __importDefault(require("./toNumberAlways"));
88
* Pauses the current function.
99
* @example
1010
```ts
11-
import sleep from 'tings/sleep'
11+
import sleep from 'tings/lib/sleep'
1212
1313
await sleep(2000) // sleeps for 2 seconds
1414
```

lib/toCompactCase.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Removes all whitespace characters from a string.
33
* @example
44
```ts
5-
import toCompactCase from 'tings/toCompactCase'
5+
import toCompactCase from 'tings/lib/toCompactCase'
66
77
toCompactCase('this is text') // thisistext
88
toCompactCase('someTEXT') // someTEXT

lib/toCompactCase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
44
* Removes all whitespace characters from a string.
55
* @example
66
```ts
7-
import toCompactCase from 'tings/toCompactCase'
7+
import toCompactCase from 'tings/lib/toCompactCase'
88
99
toCompactCase('this is text') // thisistext
1010
toCompactCase('someTEXT') // someTEXT

0 commit comments

Comments
 (0)