Sha256: a9c789bc68bc6c051f7804b8803e40d2c15143d0b6d7dab039185a6509ac794e
Contents?: true
Size: 453 Bytes
Versions: 62
Compression:
Stored size: 453 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ function UnsupportedFeatureWarning(module, message) { Error.call(this); Error.captureStackTrace(this, UnsupportedFeatureWarning); this.name = "UnsupportedFeatureWarning"; this.message = message; this.origin = this.module = module; } module.exports = UnsupportedFeatureWarning; UnsupportedFeatureWarning.prototype = Object.create(Error.prototype);
Version data entries
62 entries across 62 versions & 1 rubygems