UNPKG

libamf

Version:

Action Message Format library for node.js

11 lines (8 loc) 226 B
'use strict'; // This is literally the Map class with a different name for serialization purposes class Dictionary extends Map { toJSON() { return JSON.stringify([...this]); } } module.exports = Dictionary;