Direct emit target for ast-transpiler PR #48: `Array.isArray(x)` now emits `Helpers.isArray(x)`. Same behaviour as #isArrayJs — exposed under the contract name the transpiler emits.
(Object a)
| 254 | * exposed under the contract name the transpiler emits. |
| 255 | */ |
| 256 | public static boolean isArray(Object a) { |
| 257 | return isArrayJs(a); |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * JS-style truthy `typeof o === 'object'` check. The TS source uses this |