UNPKG

@myorders/ember-core

Version:

Provides all the core services, decorators and utilities for building a Myorders extension for the Console.

8 lines (6 loc) 151 B
export default function isIterable(obj) { if (obj == null) { return false; } return typeof obj[Symbol.iterator] === 'function'; }