npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

go-constant

v1.1.0

Published

Declare constant properties with ease

Downloads

236

Readme

Go Constant

Store values that should remain unchanged in constant properties with ease. Similar to using the const declaration, it creates a read-only reference to a value (configurable: false, writable: false, enumerable: true), however it does not make the stored value immutable. While the constant properties are protected from reassignment and reconfiguration, new properties can still be added. If you want to finalise an object and prevent extension, use Object.freeze().

codecov.io Code Coverage jsdoc donation

  • version: 1.1.0
  • license: GNU LGPLv3

Installation

npm i go-constant

or

yarn add go-constant

Importing

ES6

import Constant from "go-constant";

Node

const Constant = require("go-constant");

Browser

<script src="dist/go-constant.min.js"></script>

Usage

Simple

const RED = Constant("#FF0000", "Red");

console.log(RED.value);			// => "#FF0000"
console.log(RED.valueOf());		// => "#FF0000"
console.log(RED.name);			// => "Red"

Enum-like

const options = { valueOf: "dayOfWeek", saveInstances: true };

const Day = Constant.newType("Day", ["dayOfWeek", "name", "shortName"], options);

Object.assign(Day, {
    MONDAY : Day(1, "Monday", "Mon"),
    TUESDAY : Day(2, "Tuesday", "Tue"),
    WEDNESDAY : Day(3, "Wednesday", "Wed"),
    THURSDAY : Day(4, "Thursday", "Thu"),
    FRIDAY : Day(5, "Friday", "Fri"),
    SATURDAY : Day(6, "Saturday", "Sat"),
    SUNDARY : Day(7, "Sunday", "Sun")
});

console.log(Day.MONDAY.dayOfWeek);  // => 1
console.log(Day.MONDAY.valueOf());  // => 1
console.log(Day.MONDAY.name);       // => "Monday"
console.log(Day.MONDAY.shortName);  // => "Mon"
console.log(Day.instances.length);  // => 7

Documentation

Table of Contents

Constant

Creates a wrapper object which has constant value and name properties.

Parameters

  • value any The value of the constant.
  • name string The name of the constant.

Examples

const RED = Constant("#FF0000", "Red");

console.log(RED.value);          // => "#FF0000"
console.log(RED.valueOf());      // => "#FF0000"
console.log(RED.name);           // => "Red"

Meta

  • since: 1.0.0

newType

Creates a new constant type constructor.

Parameters

  • name string The name of the constructor.

  • propNames Array<string> The names of the constructor parameters which will be constant properties.

  • options Object? Constructor options.

    • options.validate function? The constructor parameter validator.
    • options.valueOf (function | string)? The name of the property to return as the value of the instance or the function to use to return the value of the instance.
    • options.saveInstances boolean? Whether to save instances or not. The instances are saved in an array, {ConstantType}.instances.

Examples

const Day = Constant.newType("Day", ["dayOfWeek", "name", "shortName"], { 
   valueOf: "dayOfWeek", 
   saveInstances: true 
});

const MONDAY = Day(1, "Monday", "Mon");

console.log(MONDAY.dayOfWeek);   // => 1
console.log(MONDAY.valueOf());   // => 1
console.log(MONDAY.name);        // => "Monday"
console.log(MONDAY.shortName);   // => "Mon"
console.log(Day.instances);      // [ Day { dayOfWeek: 1, name: "Monday", shortName: "Mon" } ]

Returns function The new constant type constructor.

Meta

  • since: 1.1.0