This commit is contained in:
2025-11-11 00:04:55 -06:00
parent a76ad41fde
commit 40538eddfd
6405 changed files with 1289756 additions and 0 deletions

31
node_modules/date-and-time/esm/plugin/microsecond.mjs generated vendored Normal file
View File

@ -0,0 +1,31 @@
/**
* @preserve date-and-time.js plugin
* @preserve microsecond
*/
var plugin = function (date) {
var name = 'microsecond';
date.plugin(name, {
parser: {
SSSSSS: function (str) {
var result = this.exec(/^\d{1,6}/, str);
result.value = result.value / 1000 | 0;
return result;
},
SSSSS: function (str) {
var result = this.exec(/^\d{1,5}/, str);
result.value = result.value / 100 | 0;
return result;
},
SSSS: function (str) {
var result = this.exec(/^\d{1,4}/, str);
result.value = result.value / 10 | 0;
return result;
}
}
});
return name;
};
export { plugin as default };