File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/assert/is-string/docs/types Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,28 +33,28 @@ import isString = require( './index' );
33
33
isString ( 'abc' , 123 ) ; // $ExpectError
34
34
}
35
35
36
- // Attached to main export is an isPrimitive method which returns a boolean...
36
+ // Attached to main export is an ` isPrimitive` method which returns a boolean...
37
37
{
38
38
// tslint:disable-next-line:no-construct
39
39
isString . isPrimitive ( new String ( 'abc' ) ) ; // $ExpectType boolean
40
40
isString . isPrimitive ( 'abc' ) ; // $ExpectType boolean
41
41
}
42
42
43
- // The compiler throws an error if the isPrimitive method is provided an unsupported number of arguments...
43
+ // The compiler throws an error if the ` isPrimitive` method is provided an unsupported number of arguments...
44
44
{
45
45
isString . isPrimitive ( ) ; // $ExpectError
46
46
isString . isPrimitive ( 'abc' , 123 ) ; // $ExpectError
47
47
}
48
48
49
49
50
- // Attached to main export is an isPrimitive method which returns a boolean...
50
+ // Attached to main export is an `isObject` method which returns a boolean...
51
51
{
52
52
// tslint:disable-next-line:no-construct
53
53
isString . isObject ( new String ( 'abc' ) ) ; // $ExpectType boolean
54
54
isString . isObject ( 'abc' ) ; // $ExpectType boolean
55
55
}
56
56
57
- // The compiler throws an error if the isObject method is provided an unsupported number of arguments...
57
+ // The compiler throws an error if the ` isObject` method is provided an unsupported number of arguments...
58
58
{
59
59
isString . isObject ( ) ; // $ExpectError
60
60
isString . isObject ( 'abc' , 123 ) ; // $ExpectError
You can’t perform that action at this time.
0 commit comments