wed
Version:
Wed is a schema-aware editor for XML documents.
18 lines (15 loc) • 403 B
JavaScript
define(function(require,exports,module){
export function getSymbolIterator() {
if (typeof Symbol !== 'function' || !Symbol.iterator) {
return '@@iterator';
}
return Symbol.iterator;
}
export const iterator = getSymbolIterator();
/**
* @deprecated use {@link iterator} instead
*/
export const $$iterator = iterator;
//# sourceMappingURL=iterator.js.map
return module.exports;
});