A collection of utility functions and classes extending base JavaScript.
Find a file
2024-12-30 14:59:54 +01:00
src add default maps 2024-12-30 14:59:54 +01:00
deno.json init 2024-06-15 00:22:28 +02:00
deno.lock init 2024-06-15 00:22:28 +02:00
mod.ts init 2024-06-15 00:22:28 +02:00
README.md add logging function 2024-06-15 01:20:14 +02:00

Barnulf Ts

A collection of utility functions and classes extending base JavaScript.

Intended for the Deno runtime.

Usage

import { log_from, range } from "https://git.barnulf.net/mb/barnulf_ts/raw/branch/master/mod.ts"
const log = log_from(import.meta)

for (const item of range(0, 10)) log(item)