UNPKG

@js-joda/core

Version:

a date and time library for javascript

31 lines (27 loc) 550 B
/** * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) */ /*** * Base class for a pseudo enum */ export class Enum { constructor(name){ this._name = name; } equals(other){ return this === other; } toString() { return this._name; } /** * toJSON() use by JSON.stringify * delegates to toString() * * @return {string} */ toJSON() { return this.toString(); } }