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' );
3333 isString ( 'abc' , 123 ) ; // $ExpectError
3434}
3535
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...
3737{
3838 // tslint:disable-next-line:no-construct
3939 isString . isPrimitive ( new String ( 'abc' ) ) ; // $ExpectType boolean
4040 isString . isPrimitive ( 'abc' ) ; // $ExpectType boolean
4141}
4242
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...
4444{
4545 isString . isPrimitive ( ) ; // $ExpectError
4646 isString . isPrimitive ( 'abc' , 123 ) ; // $ExpectError
4747}
4848
4949
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...
5151{
5252 // tslint:disable-next-line:no-construct
5353 isString . isObject ( new String ( 'abc' ) ) ; // $ExpectType boolean
5454 isString . isObject ( 'abc' ) ; // $ExpectType boolean
5555}
5656
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...
5858{
5959 isString . isObject ( ) ; // $ExpectError
6060 isString . isObject ( 'abc' , 123 ) ; // $ExpectError
You can’t perform that action at this time.
0 commit comments