Files
node-fastify/node_modules/find-my-way/lib/null-object.js
heiye111 c74f28caa7 one
2025-09-20 21:06:53 +08:00

9 lines
126 B
JavaScript

'use strict'
const NullObject = function () {}
NullObject.prototype = Object.create(null)
module.exports = {
NullObject
}