Skip to content

Commit 75b2734

Browse files
committed
Add casing packages to REPL namespace
1 parent fe55ce8 commit 75b2734

File tree

3 files changed

+48
-0
lines changed
  • lib/node_modules/@stdlib/namespace/lib/namespace

3 files changed

+48
-0
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/c.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@
2626

2727
var ns = [];
2828

29+
ns.push({
30+
'alias': 'camelcase',
31+
'path': '@stdlib/string/camelcase',
32+
'value': require( '@stdlib/string/camelcase' ),
33+
'type': 'Function',
34+
'related': [
35+
'@stdlib/string/constantcase',
36+
'@stdlib/string/kebabcase',
37+
'@stdlib/string/snakecase'
38+
]
39+
});
40+
2941
ns.push({
3042
'alias': 'capitalize',
3143
'path': '@stdlib/string/capitalize',
@@ -309,6 +321,18 @@ ns.push({
309321
]
310322
});
311323

324+
ns.push({
325+
'alias': 'constantcase',
326+
'path': '@stdlib/string/constantcase',
327+
'value': require( '@stdlib/string/constantcase' ),
328+
'type': 'Function',
329+
'related': [
330+
'@stdlib/string/camelcase',
331+
'@stdlib/string/kebabcase',
332+
'@stdlib/string/snakecase'
333+
]
334+
});
335+
312336
ns.push({
313337
'alias': 'constantFunction',
314338
'path': '@stdlib/utils/constant-function',

lib/node_modules/@stdlib/namespace/lib/namespace/k.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ ns.push({
3232
'related': []
3333
});
3434

35+
ns.push({
36+
'alias': 'kebabcase',
37+
'path': '@stdlib/string/kebabcase',
38+
'value': require( '@stdlib/string/kebabcase' ),
39+
'type': 'Function',
40+
'related': [
41+
'@stdlib/string/camelcase',
42+
'@stdlib/string/constantcase',
43+
'@stdlib/string/snakecase'
44+
]
45+
});
46+
3547
ns.push({
3648
'alias': 'keyBy',
3749
'path': '@stdlib/utils/key-by',

lib/node_modules/@stdlib/namespace/lib/namespace/s.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,18 @@ ns.push({
429429
]
430430
});
431431

432+
ns.push({
433+
'alias': 'snakecase',
434+
'path': '@stdlib/string/snakecase',
435+
'value': require( '@stdlib/string/snakecase' ),
436+
'type': 'Function',
437+
'related': [
438+
'@stdlib/string/camelcase',
439+
'@stdlib/string/constantcase',
440+
'@stdlib/string/kebabcase'
441+
]
442+
});
443+
432444
ns.push({
433445
'alias': 'some',
434446
'path': '@stdlib/utils/some',

0 commit comments

Comments
 (0)