UNPKG

@boem312/minecraft-server

Version:

A pure JS library to create Minecraft Java 1.16.3 servers

10 lines (8 loc) 246 B
const crypto = require('crypto'); module.exports = { get() { if (this.p._hash === null) this.p._hash = crypto.createHash('sha256').update(JSON.stringify(this.array)).digest('base64'); return this.p._hash; } }