first commit
This commit is contained in:
28
app_vue/node_modules/webpack/lib/serialization/DateObjectSerializer.js
generated
vendored
Normal file
28
app_vue/node_modules/webpack/lib/serialization/DateObjectSerializer.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
||||
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
||||
|
||||
class DateObjectSerializer {
|
||||
/**
|
||||
* @param {Date} obj date
|
||||
* @param {ObjectSerializerContext} context context
|
||||
*/
|
||||
serialize(obj, context) {
|
||||
context.write(obj.getTime());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {ObjectDeserializerContext} context context
|
||||
* @returns {Date} date
|
||||
*/
|
||||
deserialize(context) {
|
||||
return new Date(context.read());
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = DateObjectSerializer;
|
Reference in New Issue
Block a user