@stdlib/string-dotcase 0.0.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CITATION.cff +30 -0
- package/LICENSE +0 -0
- package/NOTICE +1 -1
- package/README.md +116 -107
- package/dist/index.d.ts +3 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +44 -44
- package/lib/index.js +0 -0
- package/lib/main.js +0 -0
- package/package.json +4 -5
package/CITATION.cff
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: stdlib
|
|
3
|
+
message: >-
|
|
4
|
+
If you use this software, please cite it using the
|
|
5
|
+
metadata from this file.
|
|
6
|
+
|
|
7
|
+
type: software
|
|
8
|
+
|
|
9
|
+
authors:
|
|
10
|
+
- name: The Stdlib Authors
|
|
11
|
+
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
+
|
|
13
|
+
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
+
url: https://stdlib.io
|
|
15
|
+
|
|
16
|
+
abstract: |
|
|
17
|
+
Standard library for JavaScript and Node.js.
|
|
18
|
+
|
|
19
|
+
keywords:
|
|
20
|
+
- JavaScript
|
|
21
|
+
- Node.js
|
|
22
|
+
- TypeScript
|
|
23
|
+
- standard library
|
|
24
|
+
- scientific computing
|
|
25
|
+
- numerical computing
|
|
26
|
+
- statistical computing
|
|
27
|
+
|
|
28
|
+
license: Apache-2.0 AND BSL-1.0
|
|
29
|
+
|
|
30
|
+
date-released: 2016
|
package/LICENSE
CHANGED
|
File without changes
|
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-2023 The Stdlib Authors.
|
|
1
|
+
Copyright (c) 2016-2023 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -1,31 +1,42 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
@license Apache-2.0
|
|
4
|
-
|
|
5
|
-
Copyright (c) 2023 The Stdlib Authors.
|
|
6
|
-
|
|
7
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
-
you may not use this file except in compliance with the License.
|
|
9
|
-
You may obtain a copy of the License at
|
|
10
|
-
|
|
11
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
|
|
13
|
-
Unless required by applicable law or agreed to in writing, software
|
|
14
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
-
See the License for the specific language governing permissions and
|
|
17
|
-
limitations under the License.
|
|
18
|
-
|
|
19
|
-
-->
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
1
|
+
<!--
|
|
2
|
+
|
|
3
|
+
@license Apache-2.0
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2023 The Stdlib Authors.
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
18
|
+
|
|
19
|
+
-->
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>
|
|
24
|
+
About stdlib...
|
|
25
|
+
</summary>
|
|
26
|
+
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
|
|
27
|
+
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
|
|
28
|
+
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
|
|
29
|
+
<p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
|
|
30
|
+
</details>
|
|
31
|
+
|
|
32
|
+
# dotcase
|
|
33
|
+
|
|
23
34
|
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
35
|
|
|
25
|
-
> Convert a string to dot case.
|
|
26
|
-
|
|
27
|
-
<!-- Package usage documentation. -->
|
|
28
|
-
|
|
36
|
+
> Convert a string to dot case.
|
|
37
|
+
|
|
38
|
+
<!-- Package usage documentation. -->
|
|
39
|
+
|
|
29
40
|
<section class="installation">
|
|
30
41
|
|
|
31
42
|
## Installation
|
|
@@ -36,81 +47,79 @@ npm install @stdlib/string-dotcase
|
|
|
36
47
|
|
|
37
48
|
</section>
|
|
38
49
|
|
|
39
|
-
<section class="usage">
|
|
40
|
-
|
|
41
|
-
## Usage
|
|
42
|
-
|
|
43
|
-
```javascript
|
|
44
|
-
var dotcase = require( '@stdlib/string-dotcase' );
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
#### dotcase( str )
|
|
48
|
-
|
|
49
|
-
Converts a string to dot case.
|
|
50
|
-
|
|
51
|
-
```javascript
|
|
52
|
-
var out = dotcase( 'foo bar' );
|
|
53
|
-
// returns 'foo.bar'
|
|
54
|
-
|
|
55
|
-
out = dotcase( 'IS_MOBILE' );
|
|
56
|
-
// returns 'is.mobile'
|
|
57
|
-
|
|
58
|
-
out = dotcase( 'Hello World!' );
|
|
59
|
-
// returns 'hello.world'
|
|
60
|
-
|
|
61
|
-
out = dotcase( '--foo-bar--' );
|
|
62
|
-
// returns 'foo.bar'
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
</section>
|
|
66
|
-
|
|
67
|
-
<!-- /.usage -->
|
|
68
|
-
|
|
69
|
-
<!-- Package usage examples. -->
|
|
70
|
-
|
|
71
|
-
<section class="examples">
|
|
72
|
-
|
|
73
|
-
## Examples
|
|
74
|
-
|
|
75
|
-
```javascript
|
|
76
|
-
var dotcase = require( '@stdlib/string-dotcase' );
|
|
77
|
-
|
|
78
|
-
var str = 'Hello World!';
|
|
79
|
-
var out = dotcase( str );
|
|
80
|
-
// returns 'hello.world'
|
|
81
|
-
|
|
82
|
-
str = 'HELLO WORLD!';
|
|
83
|
-
out = dotcase( str );
|
|
84
|
-
// returns 'hello.world'
|
|
85
|
-
|
|
86
|
-
str = 'To be, or not to be: that is the question.';
|
|
87
|
-
out = dotcase( str );
|
|
88
|
-
// returns 'to.be.or.not.to.be.that.is.the.question'
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
</section>
|
|
92
|
-
|
|
93
|
-
<!-- /.examples -->
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
100
|
-
|
|
50
|
+
<section class="usage">
|
|
51
|
+
|
|
52
|
+
## Usage
|
|
53
|
+
|
|
54
|
+
```javascript
|
|
55
|
+
var dotcase = require( '@stdlib/string-dotcase' );
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
#### dotcase( str )
|
|
59
|
+
|
|
60
|
+
Converts a string to dot case.
|
|
61
|
+
|
|
62
|
+
```javascript
|
|
63
|
+
var out = dotcase( 'foo bar' );
|
|
64
|
+
// returns 'foo.bar'
|
|
65
|
+
|
|
66
|
+
out = dotcase( 'IS_MOBILE' );
|
|
67
|
+
// returns 'is.mobile'
|
|
68
|
+
|
|
69
|
+
out = dotcase( 'Hello World!' );
|
|
70
|
+
// returns 'hello.world'
|
|
71
|
+
|
|
72
|
+
out = dotcase( '--foo-bar--' );
|
|
73
|
+
// returns 'foo.bar'
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
</section>
|
|
77
|
+
|
|
78
|
+
<!-- /.usage -->
|
|
79
|
+
|
|
80
|
+
<!-- Package usage examples. -->
|
|
81
|
+
|
|
82
|
+
<section class="examples">
|
|
83
|
+
|
|
84
|
+
## Examples
|
|
85
|
+
|
|
86
|
+
```javascript
|
|
87
|
+
var dotcase = require( '@stdlib/string-dotcase' );
|
|
88
|
+
|
|
89
|
+
var str = 'Hello World!';
|
|
90
|
+
var out = dotcase( str );
|
|
91
|
+
// returns 'hello.world'
|
|
92
|
+
|
|
93
|
+
str = 'HELLO WORLD!';
|
|
94
|
+
out = dotcase( str );
|
|
95
|
+
// returns 'hello.world'
|
|
96
|
+
|
|
97
|
+
str = 'To be, or not to be: that is the question.';
|
|
98
|
+
out = dotcase( str );
|
|
99
|
+
// returns 'to.be.or.not.to.be.that.is.the.question'
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
</section>
|
|
103
|
+
|
|
104
|
+
<!-- /.examples -->
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
109
|
+
|
|
101
110
|
<section class="related">
|
|
102
111
|
|
|
103
112
|
## See Also
|
|
104
113
|
|
|
105
114
|
- <span class="package-name">[`@stdlib/string-dotcase-cli`][@stdlib/string-dotcase-cli]</span><span class="delimiter">: </span><span class="description">CLI package for use as a command-line utility.</span>
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
</section>
|
|
109
|
-
|
|
110
|
-
<!-- /.related -->
|
|
111
|
-
|
|
112
|
-
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
113
|
-
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
</section>
|
|
118
|
+
|
|
119
|
+
<!-- /.related -->
|
|
120
|
+
|
|
121
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
122
|
+
|
|
114
123
|
|
|
115
124
|
<section class="main-repo" >
|
|
116
125
|
|
|
@@ -150,8 +159,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
150
159
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-dotcase.svg
|
|
151
160
|
[npm-url]: https://npmjs.org/package/@stdlib/string-dotcase
|
|
152
161
|
|
|
153
|
-
[test-image]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml/badge.svg?branch=v0.0
|
|
154
|
-
[test-url]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml?query=branch:v0.0
|
|
162
|
+
[test-image]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml/badge.svg?branch=v0.1.0
|
|
163
|
+
[test-url]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml?query=branch:v0.1.0
|
|
155
164
|
|
|
156
165
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-dotcase/main.svg
|
|
157
166
|
[coverage-url]: https://codecov.io/github/stdlib-js/string-dotcase?branch=main
|
|
@@ -182,12 +191,12 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
182
191
|
[esm-url]: https://github.com/stdlib-js/string-dotcase/tree/esm
|
|
183
192
|
[branches-url]: https://github.com/stdlib-js/string-dotcase/blob/main/branches.md
|
|
184
193
|
|
|
185
|
-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/string-dotcase/main/LICENSE
|
|
186
|
-
|
|
187
|
-
[standard-streams]: https://en.wikipedia.org/wiki/Standard_streams
|
|
188
|
-
|
|
189
|
-
[mdn-regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
|
|
190
|
-
|
|
191
|
-
</section>
|
|
192
|
-
|
|
193
|
-
<!-- /.links -->
|
|
194
|
+
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/string-dotcase/main/LICENSE
|
|
195
|
+
|
|
196
|
+
[standard-streams]: https://en.wikipedia.org/wiki/Standard_streams
|
|
197
|
+
|
|
198
|
+
[mdn-regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
|
|
199
|
+
|
|
200
|
+
</section>
|
|
201
|
+
|
|
202
|
+
<!-- /.links -->
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";var a=function(r,e){return function(){return e||r((e={exports:{}}).exports,e),e.exports}};var t=a(function(c,i){
|
|
2
|
+
var s=require('@stdlib/assert-is-string/dist').isPrimitive,u=require('@stdlib/error-tools-fmtprodmsg/dist'),n=require('@stdlib/string-base-dotcase/dist');function o(r){if(!s(r))throw new TypeError(u('1gn3F',r));return n(r)}i.exports=o
|
|
3
|
+
});var m=t();module.exports=m;
|
|
4
|
+
/** @license Apache-2.0 */
|
|
5
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../lib/main.js", "../lib/index.js"],
|
|
4
|
+
"sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2023 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nvar isString = require( '@stdlib/assert-is-string' ).isPrimitive;\nvar format = require( '@stdlib/string-format' );\nvar base = require( '@stdlib/string-base-dotcase' );\n\n\n// MAIN //\n\n/**\n* Converts a string to dot case.\n*\n* @param {string} str - string to convert\n* @throws {TypeError} must provide a string\n* @returns {string} dot-cased string\n*\n* @example\n* var out = dotcase( 'foo bar' );\n* // returns 'foo.bar'\n*\n* @example\n* var out = dotcase( 'IS_MOBILE' );\n* // returns 'is.mobile'\n*\n* @example\n* var out = dotcase( 'Hello World!' );\n* // returns 'hello.world'\n*\n* @example\n* var out = dotcase( '--foo-bar--' );\n* // returns 'foo.bar'\n*/\nfunction dotcase( str ) {\n\tif ( !isString( str ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be a string. Value: `%s`.', str ) );\n\t}\n\treturn base( str );\n}\n\n\n// EXPORTS //\n\nmodule.exports = dotcase;\n", "/**\n* @license Apache-2.0\n*\n* Copyright (c) 2023 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Convert a string to dot case.\n*\n* @module @stdlib/string-dotcase\n*\n* @example\n* var dotcase = require( '@stdlib/string-dotcase' );\n*\n* var str = dotcase( 'foo bar' );\n* // returns 'foo.bar'\n*\n* str = dotcase( '--foo-bar--' );\n* // returns 'foo.bar'\n*\n* str = dotcase( 'Hello World!' );\n* // returns 'hello.world'\n*/\n\n// MODULES //\n\nvar main = require( './main.js' );\n\n\n// EXPORTS //\n\nmodule.exports = main;\n"],
|
|
5
|
+
"mappings": "uGAAA,IAAAA,EAAAC,EAAA,SAAAC,EAAAC,EAAA,cAsBA,IAAIC,EAAW,QAAS,0BAA2B,EAAE,YACjDC,EAAS,QAAS,uBAAwB,EAC1CC,EAAO,QAAS,6BAA8B,EA4BlD,SAASC,EAASC,EAAM,CACvB,GAAK,CAACJ,EAAUI,CAAI,EACnB,MAAM,IAAI,UAAWH,EAAQ,kEAAmEG,CAAI,CAAE,EAEvG,OAAOF,EAAME,CAAI,CAClB,CAKAL,EAAO,QAAUI,ICtBjB,IAAIE,EAAO,IAKX,OAAO,QAAUA",
|
|
6
|
+
"names": ["require_main", "__commonJSMin", "exports", "module", "isString", "format", "base", "dotcase", "str", "main"]
|
|
7
|
+
}
|
package/docs/types/index.d.ts
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2023 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
// TypeScript Version:
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Converts a string to dot case.
|
|
23
|
-
*
|
|
24
|
-
* @param str - string to convert
|
|
25
|
-
* @returns dot-cased string
|
|
26
|
-
*
|
|
27
|
-
* @example
|
|
28
|
-
* var str = dotcase( 'Hello World!' );
|
|
29
|
-
* // returns 'hello.world'
|
|
30
|
-
*
|
|
31
|
-
* @example
|
|
32
|
-
* var str = dotcase( 'foo_bar' );
|
|
33
|
-
* // returns 'foo.bar'
|
|
34
|
-
*
|
|
35
|
-
* @example
|
|
36
|
-
* var str = dotcase( 'foo-bar' );
|
|
37
|
-
* // returns 'foo.bar'
|
|
38
|
-
*/
|
|
39
|
-
declare function dotcase( str: string ): string;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// EXPORTS //
|
|
43
|
-
|
|
44
|
-
export = dotcase;
|
|
1
|
+
/*
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2023 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
// TypeScript Version: 4.1
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Converts a string to dot case.
|
|
23
|
+
*
|
|
24
|
+
* @param str - string to convert
|
|
25
|
+
* @returns dot-cased string
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* var str = dotcase( 'Hello World!' );
|
|
29
|
+
* // returns 'hello.world'
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* var str = dotcase( 'foo_bar' );
|
|
33
|
+
* // returns 'foo.bar'
|
|
34
|
+
*
|
|
35
|
+
* @example
|
|
36
|
+
* var str = dotcase( 'foo-bar' );
|
|
37
|
+
* // returns 'foo.bar'
|
|
38
|
+
*/
|
|
39
|
+
declare function dotcase( str: string ): string;
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
// EXPORTS //
|
|
43
|
+
|
|
44
|
+
export = dotcase;
|
package/lib/index.js
CHANGED
|
File without changes
|
package/lib/main.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/string-dotcase",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Convert a string to dot case.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -37,10 +37,9 @@
|
|
|
37
37
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@stdlib/assert-is-string": "^0.0
|
|
41
|
-
"@stdlib/string-base-dotcase": "^0.0
|
|
42
|
-
"@stdlib/string-format": "^0.0
|
|
43
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.0.2"
|
|
40
|
+
"@stdlib/assert-is-string": "^0.1.0",
|
|
41
|
+
"@stdlib/string-base-dotcase": "^0.1.0",
|
|
42
|
+
"@stdlib/string-format": "^0.1.0"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
45
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|