Skip to content
Snippets Groups Projects
Select Git revision
  • 32d43486403593de2d98457a874d36f6b2e88c3e
  • master default protected
2 results

Form.js

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');