File tree 2 files changed +0
-15
lines changed
lib/node_modules/@stdlib/string
2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 21
21
/* tslint:disable:max-line-length */
22
22
/* tslint:disable:max-file-line-count */
23
23
24
- import constants = require( '@stdlib/constants/string' ) ;
25
24
import capitalize = require( '@stdlib/string/capitalize' ) ;
26
25
import codePointAt = require( '@stdlib/string/code-point-at' ) ;
27
26
import endsWith = require( '@stdlib/string/ends-with' ) ;
@@ -54,11 +53,6 @@ import utf16ToUTF8Array = require( '@stdlib/string/utf16-to-utf8-array' );
54
53
* Interface describing the `string` namespace.
55
54
*/
56
55
interface Namespace {
57
- /**
58
- * Standard string constants.
59
- */
60
- constants : typeof constants ;
61
-
62
56
/**
63
57
* Capitalizes the first character in a string.
64
58
*
Original file line number Diff line number Diff line change @@ -36,15 +36,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
36
36
*/
37
37
var string = { } ;
38
38
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
-
48
39
/**
49
40
* @name capitalize
50
41
* @memberof string
You can’t perform that action at this time.
0 commit comments