@stdlib/string-dotcase 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -148,8 +148,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
148
148
  [npm-image]: http://img.shields.io/npm/v/@stdlib/string-dotcase.svg
149
149
  [npm-url]: https://npmjs.org/package/@stdlib/string-dotcase
150
150
 
151
- [test-image]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml/badge.svg?branch=v0.0.1
152
- [test-url]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml?query=branch:v0.0.1
151
+ [test-image]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml/badge.svg?branch=v0.0.2
152
+ [test-url]: https://github.com/stdlib-js/string-dotcase/actions/workflows/test.yml?query=branch:v0.0.2
153
153
 
154
154
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-dotcase/main.svg
155
155
  [coverage-url]: https://codecov.io/github/stdlib-js/string-dotcase?branch=main
package/lib/main.js CHANGED
@@ -36,7 +36,7 @@ var base = require( '@stdlib/string-base-dotcase' );
36
36
  */
37
37
  function dotcase( str ) {
38
38
  if ( !isString( str ) ) {
39
- throw new TypeError( format( "null3F,Ex", str ) );
39
+ throw new TypeError( format( "1gn3F,Ex", str ) );
40
40
  }
41
41
  return base( str );
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/string-dotcase",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Convert a string to dot case.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {