Skip to content

Commit

Permalink
Merge pull request #86 from harthur/string-version
Browse files Browse the repository at this point in the history
allow 'version' to be a string to play nice with Sass
  • Loading branch information
fitzgen committed Nov 1, 2013
2 parents e4e5bcf + 3028acb commit b5d8dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/source-map/source-map-consumer.js
Expand Up @@ -58,7 +58,7 @@ define(function (require, exports, module) {
var mappings = util.getArg(sourceMap, 'mappings');
var file = util.getArg(sourceMap, 'file', null);

if (version !== this._version) {
if (version != this._version) {
throw new Error('Unsupported version: ' + version);
}

Expand Down

0 comments on commit b5d8dc6

Please sign in to comment.