Skip to main content
Module

x/simple_utility/mod.ts

Simplify processing for Deno.
Latest
import * as simpleUtility from "https://deno.land/x/simple_utility@v2.1.0/mod.ts";

Variables

Are you running on Linux?

Are you running on Mac?

Are you running on Windows?

Functions

Convert from base64 encoded string to binary.

Convert from binary to base64 encoded string.

Convert from binary to base64 encoded DataURL. Default MIME type is application/octet-stream.

Concat multiple sources into single binary.

Decrypt binary. Algorithm is AES-GCM with 128 bits key, 128 bits tag and 96 bits IV. IV is read from head of cipher.

Encrypt binary. Algorithm is AES-GCM with 128 bits key, 128 bits tag and 96 bits IV. IV is prepended to cipher.

Generate exportable public-key pair for ECDH. Curve algorithm is "NIST P-256".

Generate exportable public-key pair for ECDSA. Curve algorithm is "NIST P-256".

Derive SHA2 hash value from binary. Default is SHA-256.

Generate random binary with any number of bytes.

Create signature using private-key.

Verify signature using public-key.

Apply Object.freeze() recursive.

Apply Object.seal() recursive.

Decompress DEFLATE format binary. Default codec is DEFLATE with no header (RFC-1951) and name in WebAPI specification is "deflate-raw".

Compress binary with DEFLATE format. Default codec is DEFLATE with no header (RFC-1951) and name in WebAPI specification is "deflate-raw".

Wait for specified time. Return actual elapsed wait time.

Extended fetch function that can specify response type directly.

Read JSON file and convert to object. If JSON file does not exist create new file with default value. Argument default value also act as type definition.

Read JSON file and convert to object.

Convert from object to JSON and write to file.

Decode binary of "minipack" format.

Concat files with "minipack" format.

System-wide user config directory path for each OS. ~/.config for UNIX and ~/AppData/Roaming for Windows.

System-wide home directory path for each OS. ${HOME} for UNIX and %USERPROFILE% for Windows.

Directory of Deno.mainModule.

Convert from backslash to slash. Useful for converting from Windows path to UNIX path.

Convert from slash to backslash. Useful for converting from UNIX path to Windows path.

System-wide temporary directory path for each OS. /tmp for UNIX and C:/Windows/Temp for Windows.

System-wide application data directory path for each OS. /var for UNIX and C:/ProgramData for Windows.

Convert from dirty text to specified type. Enabling strict flag will throw exception if parsing failed.

Convert from dirty text to specified type. If parsing failed use default (def) value. Convert to same type as default value.

Run command as subprocess.

Convert from stream to binary.

Convert from binary to stream.

Convert from UTF-8 binary to string.

Convert from any encoded binary to string. Default codec is SHIFT-JIS.

Convert from string to UTF-8 binary.

Convert half-width string (ex: Japanese Kana) to full-width and full-width alphanumeric symbols to half-width.

Combined textFixWidth() and textPurgeSuperfluous().

Convert from hex string to binary.

Convert from binary to hex string.

Create string with zero padding at beginning of number. Output is 2 digits by default.

Trim head and tail blank, remove CR and consecutive space, tab, LF to single space, tab, LF.

Accurately recognize string that contain character above 0x010000 and array them one by character. Useful for calculate number of characters with string contains emoji.

Convert from UNIXTIME or formatted datetime string to Date. If no args will be current time. Note that in seconds not milliseconds.

Convert from Date or formatted datetime string to UNIXTIME. If no args will be current time. Note that in seconds not milliseconds.

Serialize from Date or UNIXTIME or formatted datetime string to "yyyyMMddhhmmss". If no args will be current time.

Register TaskAction and return reusable task execution context. Worker instance is created and destroyed each time they run TaskContext. import can only use "syntax", not "declaration".

Interfaces

Simple name and body pair.

Added query which allows you to specify query string to RequestInit.

Type Aliases

Make interface acceptable in Record type argument.

Serialized CryptoKeyPair.

Content of processing run by worker thread.

Run registered TaskAction in worker thread.