Skip to content

Commit a87bcad

Browse files
committed
Do not export removed namespace
1 parent 3ac467b commit a87bcad

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

lib/node_modules/@stdlib/string/docs/types/index.d.ts

-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
/* tslint:disable:max-line-length */
2222
/* tslint:disable:max-file-line-count */
2323

24-
import constants = require( '@stdlib/constants/string' );
2524
import capitalize = require( '@stdlib/string/capitalize' );
2625
import codePointAt = require( '@stdlib/string/code-point-at' );
2726
import endsWith = require( '@stdlib/string/ends-with' );
@@ -54,11 +53,6 @@ import utf16ToUTF8Array = require( '@stdlib/string/utf16-to-utf8-array' );
5453
* Interface describing the `string` namespace.
5554
*/
5655
interface Namespace {
57-
/**
58-
* Standard string constants.
59-
*/
60-
constants: typeof constants;
61-
6256
/**
6357
* Capitalizes the first character in a string.
6458
*

lib/node_modules/@stdlib/string/lib/index.js

-9
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
3636
*/
3737
var string = {};
3838

39-
/**
40-
* @name constants
41-
* @memberof string
42-
* @readonly
43-
* @type {Namespace}
44-
* @see {@link module:@stdlib/constants/string}
45-
*/
46-
setReadOnly( string, 'constants', require( '@stdlib/constants/string' ) );
47-
4839
/**
4940
* @name capitalize
5041
* @memberof string

0 commit comments

Comments
 (0)