Comparing version 1.0.6 to 1.1.0
{ | ||
"name": "vatrates", | ||
"description": "Up-to-date European VAT Rates", | ||
"version": "1.0.6", | ||
"version": "1.1.0", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "VAT", |
{ | ||
"name": "vatrates", | ||
"title": "VATRates", | ||
"version": "1.0.6", | ||
"version": "1.1.0", | ||
"description": "Up-to-date European VAT Rates", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
/*! | ||
* VATRates - v1.0.2 | ||
* VATRates - v1.1.0 | ||
* MIT License | ||
*/ | ||
(function(window) { | ||
// UMD wrapper | ||
(function(root, factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD | ||
define([], factory); | ||
} else if (typeof module === 'object' && module.exports) { | ||
// Node/CommonJS | ||
module.exports = factory(); | ||
} else { | ||
// Browser global | ||
root.VATRates = factory(); | ||
} | ||
}(this, function() { | ||
@@ -314,14 +326,4 @@ var VATRates = { | ||
// export | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD | ||
define(VATRates); | ||
} else if (typeof exports === 'object') { | ||
// CommonJS | ||
module.exports = VATRates; | ||
} else { | ||
// global | ||
window.VATRates = VATRates; | ||
} | ||
return VATRates; | ||
})(this); | ||
})); |
Sorry, the diff of this file is not supported yet
19973
594