File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,13 +81,13 @@ Deno.test("isObject<T> returns false on non T object", () => {
8181 assertEquals ( isObject ( { a : "a" } , isNumber ) , false ) ;
8282} ) ;
8383
84- Deno . test ( "isFunction returns true on array " , ( ) => {
84+ Deno . test ( "isFunction returns true on function " , ( ) => {
8585 assertEquals ( isFunction ( isFunction ) , true ) ;
8686 assertEquals ( isFunction ( function ( ) { } ) , true ) ;
8787 assertEquals ( isFunction ( ( ) => { } ) , true ) ;
8888 assertEquals ( isFunction ( setTimeout ) , true ) ;
8989} ) ;
90- Deno . test ( "isFunction returns false on non array " , ( ) => {
90+ Deno . test ( "isFunction returns false on non function " , ( ) => {
9191 assertEquals ( isFunction ( "" ) , false ) ;
9292 assertEquals ( isFunction ( 0 ) , false ) ;
9393 assertEquals ( isFunction ( [ ] ) , false ) ;
You can’t perform that action at this time.
0 commit comments