Skip to content

Commit

Permalink
[build] 2.0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
kemar committed Oct 11, 2017
1 parent 2309672 commit 38b0aec
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 6 deletions.
40 changes: 36 additions & 4 deletions dist/vue-gettext.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,46 @@
/**
* vue-gettext v2.0.23
* vue-gettext v2.0.24
* (c) 2017 Polyconseil
* @license MIT
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.VueGettext = factory());
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.VueGettext = factory());
}(this, (function () { 'use strict';

// Polyfill Object.assign for legacy browsers.
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign

if (typeof Object.assign !== 'function') {
(function () {
Object.assign = function (target) {
'use strict';
var arguments$1 = arguments;

var output;
var index;
var source;
var nextKey;
if (target === undefined || target === null) {
throw new TypeError('Cannot convert undefined or null to object')
}
output = Object(target);
for (index = 1; index < arguments.length; index++) {
source = arguments$1[index];
if (source !== undefined && source !== null) {
for (nextKey in source) {
if (source.hasOwnProperty(nextKey)) {
output[nextKey] = source[nextKey];
}
}
}
}
return output
};
}());
}

/**
* Plural Forms
*
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-gettext.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 38b0aec

Please sign in to comment.