Created
October 22, 2023 19:57
-
-
Save davecra/eb7c6194721129b7ee696e94575947f3 to your computer and use it in GitHub Desktop.
Common.js for Power-Up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PACKAGE = require('../../package.json'); | |
/** | |
* CommonFunctions to be shared across all the project | |
*/ | |
export default class Common { | |
/** @type {String} */ | |
static APPNAME = PACKAGE.appName; | |
/** @type {String} */ | |
static VERSION = PACKAGE.version; | |
/** @type {String} */ | |
static detailsPage = "./details.html"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment