UNPKG

browser-x

Version:

A partial implementation of the W3C DOM API on top of an HTML5 parser and serializer.

18 lines (14 loc) 306 B
'use strict'; function StyleSheetList() {} StyleSheetList.prototype = { constructor: StyleSheetList, length: 0, item: function(i) { return this[i]; }, push: function(sheet) { this[this.length] = sheet; this.length++; } }; module.exports = StyleSheetList;