// Generated by CoffeeScript 1.6.2 var ElementsCollection, ScriptsCollection, typeChecker, _ref, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; typeChecker = require('typechecker'); ElementsCollection = require(__dirname + '/elements'); ScriptsCollection = (function(_super) { __extends(ScriptsCollection, _super); function ScriptsCollection() { _ref = ScriptsCollection.__super__.constructor.apply(this, arguments); return _ref; } ScriptsCollection.prototype.add = function(values, opts) { var key, value, _i, _len, _ref1, _ref2; opts || (opts = {}); if ((_ref1 = opts.defer) == null) { opts.defer = true; } if ((_ref2 = opts.async) == null) { opts.async = false; } opts.attrs || (opts.attrs = ''); if (typeChecker.isArray(values)) { values = values.slice(); } else { values = [values]; } if (opts.defer) { opts.attrs += "defer=\"defer\" "; } if (opts.async) { opts.attrs += "async=\"async\" "; } for (key = _i = 0, _len = values.length; _i < _len; key = ++_i) { value = values[key]; if (typeChecker.isString(value)) { if (value[0] === '<') { } else if (value.indexOf(' ') === -1) { values[key] = ""; } else { values[key] = ""; } } } return ScriptsCollection.__super__.add.call(this, values, opts); }; return ScriptsCollection; })(ElementsCollection); module.exports = ScriptsCollection;