* Checks if current environment is Node
()
| 669 | * Checks if current environment is Node |
| 670 | */ |
| 671 | isNodeEnv() { |
| 672 | const isNode = new Function( |
| 673 | "try {return this===global;}catch(e){return false;}" |
| 674 | ); |
| 675 | return isNode(); |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * Remove NaN values from 1D array |
nothing calls this directly
no outgoing calls
no test coverage detected