1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-02 02:33:38 +00:00
This commit is contained in:
MatteZ02
2019-10-10 16:43:04 +03:00
parent 6f6ac8a6fa
commit 50b9bed483
9432 changed files with 1988816 additions and 167 deletions

42
node_modules/date-and-time/plugin/meridiem.js generated vendored Normal file
View File

@ -0,0 +1,42 @@
(function (global) {
'use strict';
var exec = function (date) {
date.plugin('meridiem', {
res: {
A: ['a.m.', 'p.m.', 'AM', 'PM', 'A.M.', 'P.M.', 'am', 'pm']
},
formatter: {
AA: function (d) {
// AM / PM
return this.res.A[d.getHours() > 11 | 0 + 2];
},
a: function (d) {
// A.M. / P.M.
return this.res.A[d.getHours() > 11 | 0 + 4];
},
aa: function (d) {
// am / pm
return this.res.A[d.getHours() > 11 | 0 + 6];
}
},
parser: {
A: function (str) {
var result = this.find(this.res.A, str);
result.value %= 2;
return result;
}
}
});
};
if (typeof module === 'object' && typeof module.exports === 'object') {
(module.paths || []).push('./');
exec(require('date-and-time'));
} else if (typeof define === 'function' && define.amd) {
define(['date-and-time'], exec);
} else {
exec(global.date);
}
}(this));

38
node_modules/date-and-time/plugin/ordinal.js generated vendored Normal file
View File

@ -0,0 +1,38 @@
(function (global) {
'use strict';
var exec = function (date) {
date.plugin('ordinal', {
formatter: {
DDD: function (d) {
var day = d.getDate();
switch (day) {
case 1:
case 21:
case 31:
return day + 'st';
case 2:
case 22:
return day + 'nd';
case 3:
case 23:
return day + 'rd';
default:
return day + 'th';
}
}
}
});
};
if (typeof module === 'object' && typeof module.exports === 'object') {
(module.paths || []).push('./');
exec(require('date-and-time'));
} else if (typeof define === 'function' && define.amd) {
define(['date-and-time'], exec);
} else {
exec(global.date);
}
}(this));