
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
@sqlpm/enum-ts
Advanced tools
``@sqlpm/file-async-ts` is a typescript library applying the facade pattern to asynchronous file access.
@sqlpm/enum-ts
A utility project that has helper functions for verifying and displaying typescript enums.
Checks if a value is a valid member of an enumeration.
@template T - The type of the enumeration. @param {T} enumObj - The enumeration object. @param {unknown} value - The value to check. @returns {value is T[keyof T]} - A boolean indicating whether the value is a valid member of the enumeration.
@example
enum TestEnum {
One = 'one',
Two = 'two',
Three = 'three',
}
if (isValidEnumValue(TestEnum, TestEnum.One)) {
// The value 'one' is a valid member of the TestEnum enum.
// Do something...
} else {
// The value 'one' is not a valid member of the TestEnum enum.
// Do something else...
}
Converts an enumeration to an array of strings. @template T - The type of the enumeration. @param {T} enumObj - The enumeration object. @returns {string} - A comma separated string of the enumeration values. @example
enum TestEnum {
One = 'one',
Two = 'two',
Three = 'three',
}
const testEnumArray = enumToStringArray(TestEnum);
// testEnumArray = 'one,two,three'
FAQs
``@sqlpm/file-async-ts` is a typescript library applying the facade pattern to asynchronous file access.
We found that @sqlpm/enum-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.