Sha256: 1d17af4347e590a9e62293ac3305e49b971d81e2d06104e80fc41a99e945dee6
Contents?: true
Size: 951 Bytes
Versions: 3
Compression:
Stored size: 951 Bytes
Contents
(function() { var TransformValue, Value, extend = 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; }, hasProp = {}.hasOwnProperty; Value = require('../value'); TransformValue = (function(superClass) { extend(TransformValue, superClass); function TransformValue() { return TransformValue.__super__.constructor.apply(this, arguments); } TransformValue.names = ['transform']; TransformValue.prototype.replace = function(value, prefix) { if (prefix === '-ms-') { return value; } else { return TransformValue.__super__.replace.apply(this, arguments); } }; return TransformValue; })(Value); module.exports = TransformValue; }).call(this);
Version data entries
3 entries across 3 versions & 1 rubygems