Skip to content
Snippets Groups Projects
Select Git revision
  • 6ea0ef5d371af8ee53bcc2e93f45f1b9b83e44e7
  • master default protected
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • v1.1.0
8 results

directories-platform-part.mk

Blame
  • constants.mjs 467 B
    /**
     * Copyright 2022 schukai GmbH
     * SPDX-License-Identifier: AGPL-3.0
     */
    
    /**
     * Property-Keys
     * @author schukai GmbH
     */
    
    export {
        internalSymbol,
        internalStateSymbol
    }
    
    /**
     * @private
     * @type {symbol}
     * @memberOf Monster
     * @license AGPLv3
     * @since 1.24.0
     */
    const internalSymbol = Symbol('internalData');
    
    /**
     * @private
     * @type {symbol}
     * @memberOf Monster
     * @license AGPLv3
     * @since 1.25.0
     */
    const internalStateSymbol = Symbol('state');