fundamental-constants
Advanced tools
Comparing version 0.0.5 to 0.0.6
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.MINIMAL_CHARACTERS_COUNT_OF_EMAIL_ADDRESS = exports.MAXIMAL_CHARACTERS_COUNT_OF_EMAIL_ADDRESS = exports.EMAIL_ADDRESS_VALID_PATTERN = exports.CHARACTERS_COUNT_OF_DATE_PART_IN_ISO8601_STRING = exports.CHARACTERS_COUNT_IN_FULL_ISO8601_STRING = exports.SECONDS_PER_MINUTE = exports.MINUTES_PER_HOUR = exports.MAXIMAL_DAYS_IN_MONTH = exports.HOURS_PER_STELLAR_DAY = exports.NETWORK_PORT_MINIMAL_VALUE = exports.NETWORK_PORT_MAXIMAL_VALUE = void 0; | ||
exports.MINIMAL_CHARACTERS_COUNT_OF_EMAIL_ADDRESS = exports.MAXIMAL_CHARACTERS_COUNT_OF_EMAIL_ADDRESS = exports.EMAIL_ADDRESS_VALID_PATTERN = exports.CHARACTERS_COUNT_OF_DATE_PART_IN_ISO8601_STRING = exports.CHARACTERS_COUNT_IN_FULL_ISO8601_STRING = exports.SECONDS_PER_MINUTE = exports.MonthsNames = exports.MINUTES_PER_HOUR = exports.MAXIMAL_DAYS_IN_MONTH = exports.HOURS_PER_STELLAR_DAY = exports.DaysOfWeekNames = exports.DAYS_COUNT_IN_WEEK = exports.NETWORK_PORT_MINIMAL_VALUE = exports.NETWORK_PORT_MAXIMAL_VALUE = void 0; | ||
var NETWORK_PORT_MAXIMAL_VALUE_1 = require("./ComputerNetworking/NETWORK_PORT_MAXIMAL_VALUE"); | ||
@@ -8,2 +8,6 @@ Object.defineProperty(exports, "NETWORK_PORT_MAXIMAL_VALUE", { enumerable: true, get: function () { return NETWORK_PORT_MAXIMAL_VALUE_1.NETWORK_PORT_MAXIMAL_VALUE; } }); | ||
Object.defineProperty(exports, "NETWORK_PORT_MINIMAL_VALUE", { enumerable: true, get: function () { return NETWORK_PORT_MINIMAL_VALUE_1.NETWORK_PORT_MINIMAL_VALUE; } }); | ||
var DAYS_COUNT_IN_WEEK_1 = require("./DateTime/DAYS_COUNT_IN_WEEK"); | ||
Object.defineProperty(exports, "DAYS_COUNT_IN_WEEK", { enumerable: true, get: function () { return DAYS_COUNT_IN_WEEK_1.DAYS_COUNT_IN_WEEK; } }); | ||
var DaysOfWeekNames_1 = require("./DateTime/DaysOfWeekNames"); | ||
Object.defineProperty(exports, "DaysOfWeekNames", { enumerable: true, get: function () { return DaysOfWeekNames_1.DaysOfWeekNames; } }); | ||
var HOURS_PER_STELLAR_DAY_1 = require("./DateTime/HOURS_PER_STELLAR_DAY"); | ||
@@ -15,2 +19,4 @@ Object.defineProperty(exports, "HOURS_PER_STELLAR_DAY", { enumerable: true, get: function () { return HOURS_PER_STELLAR_DAY_1.HOURS_PER_STELLAR_DAY; } }); | ||
Object.defineProperty(exports, "MINUTES_PER_HOUR", { enumerable: true, get: function () { return MINUTES_PER_HOUR_1.MINUTES_PER_HOUR; } }); | ||
var MonthsNames_1 = require("./DateTime/MonthsNames"); | ||
Object.defineProperty(exports, "MonthsNames", { enumerable: true, get: function () { return MonthsNames_1.MonthsNames; } }); | ||
var SECONDS_PER_MINUTE_1 = require("./DateTime/SECONDS_PER_MINUTE"); | ||
@@ -17,0 +23,0 @@ Object.defineProperty(exports, "SECONDS_PER_MINUTE", { enumerable: true, get: function () { return SECONDS_PER_MINUTE_1.SECONDS_PER_MINUTE; } }); |
export { NETWORK_PORT_MAXIMAL_VALUE } from "./ComputerNetworking/NETWORK_PORT_MAXIMAL_VALUE"; | ||
export { NETWORK_PORT_MINIMAL_VALUE } from "./ComputerNetworking/NETWORK_PORT_MINIMAL_VALUE"; | ||
export { DAYS_COUNT_IN_WEEK } from "./DateTime/DAYS_COUNT_IN_WEEK"; | ||
export { DaysOfWeekNames } from "./DateTime/DaysOfWeekNames"; | ||
export { HOURS_PER_STELLAR_DAY } from "./DateTime/HOURS_PER_STELLAR_DAY"; | ||
export { MAXIMAL_DAYS_IN_MONTH } from "./DateTime/MAXIMAL_DAYS_IN_MONTH"; | ||
export { MINUTES_PER_HOUR } from "./DateTime/MINUTES_PER_HOUR"; | ||
export { MonthsNames } from "./DateTime/MonthsNames"; | ||
export { SECONDS_PER_MINUTE } from "./DateTime/SECONDS_PER_MINUTE"; | ||
@@ -7,0 +10,0 @@ export { CHARACTERS_COUNT_IN_FULL_ISO8601_STRING } from "./DateTime/ISO8601/CHARACTERS_COUNT_IN_FULL_ISO8601_STRING"; |
export { NETWORK_PORT_MAXIMAL_VALUE } from "./ComputerNetworking/NETWORK_PORT_MAXIMAL_VALUE"; | ||
export { NETWORK_PORT_MINIMAL_VALUE } from "./ComputerNetworking/NETWORK_PORT_MINIMAL_VALUE"; | ||
export { DAYS_COUNT_IN_WEEK } from "./DateTime/DAYS_COUNT_IN_WEEK"; | ||
export { DaysOfWeekNames } from "./DateTime/DaysOfWeekNames"; | ||
export { HOURS_PER_STELLAR_DAY } from "./DateTime/HOURS_PER_STELLAR_DAY"; | ||
export { MAXIMAL_DAYS_IN_MONTH } from "./DateTime/MAXIMAL_DAYS_IN_MONTH"; | ||
export { MINUTES_PER_HOUR } from "./DateTime/MINUTES_PER_HOUR"; | ||
export { MonthsNames } from "./DateTime/MonthsNames"; | ||
export { SECONDS_PER_MINUTE } from "./DateTime/SECONDS_PER_MINUTE"; | ||
@@ -7,0 +10,0 @@ export { CHARACTERS_COUNT_IN_FULL_ISO8601_STRING } from "./DateTime/ISO8601/CHARACTERS_COUNT_IN_FULL_ISO8601_STRING"; |
{ | ||
"name": "fundamental-constants", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Fundamental constants and enumerations", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -28,2 +28,3 @@ Fundamental constants and enumerations. | ||
|-------------------------|-------| | ||
| `DAYS_COUNT_IN_WEEK` | 7 | | ||
| `HOURS_PER_STELLAR_DAY` | 24 | | ||
@@ -34,3 +35,33 @@ | `MAXIMAL_DAYS_IN_MONTH` | 31 | | ||
#### Enumerations | ||
##### `DaysOfWeekNames` | ||
| Key | Value | | ||
|-----------|-------------| | ||
| sunday | "SUNDAY" | | ||
| monday | "MONDAY" | | ||
| tuesday | "TUESDAY" | | ||
| wednesday | "WEDNESDAY" | | ||
| thursday | "THURSDAY" | | ||
| friday | "FRIDAY" | | ||
| saturday | "SATURDAY" | | ||
##### `MonthsNames` | ||
| Key | Value | | ||
|-----------|-------------| | ||
| january | "JANUARY" | | ||
| february | "FEBRUARY" | | ||
| march | "MARCH" | | ||
| april | "APRIL" | | ||
| may | "MAY" | | ||
| june | "JUNE" | | ||
| july | "JULY" | | ||
| august | "AUGUST" | | ||
| september | "SEPTEMBER" | | ||
| october | "OCTOBER" | | ||
| november | "NOVEMBER" | | ||
| december | "DECEMBER" | | ||
#### ISO8601 | ||
@@ -37,0 +68,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17502
48
211
80