Skip to content

Overview

This page will cover the helpers, what they do and how to use them.

Utils

The utils (utilities) helper just contains a variety of functions, noted below.

normalise

The normalise function is used to normalise a path, it will remove any trailing slashes and ensure that the path is a string.

Parameters

  • path - The path to normalise.
ts
normalise(path: string): string

Usage

ts
import { Utils } from '@sodacore/core';

const path = Utils.normalise('\\path\\to\\something\\');
console.log(path); // /path/to/something

resolve

The resolve function is used to resolve a path, it will resolve the path to the current file, and then join it with the path provided.

Parameters

  • base - The starting path.
  • paths - The paths to join and normalise.
ts
resolve(base: string, ...paths: string[]): string

Usage

ts
import { Utils } from '@sodacore/core';

const path = Utils.resolve('/hello', 'world/../foo');
console.log(path); // /hello/foo

getThreadFileFromArgs

The getThreadFileFromArgs function is used to get the thread file from the arguments passed to the thread, this is called by the thread wrapper.

Parameters

ts
getThreadFileFromArgs(): string

Usage

ts
import { Utils } from '@sodacore/core';

const path = Utils.getThreadFileFromArgs();
console.log(path); // /path/to/thread/file

isJson

The isJson function is used to check if a string is a valid JSON string.

Parameters

  • str - The string to check.
ts
isJson(str: string): boolean

Usage

ts
import { Utils } from '@sodacore/core';

const isJson = Utils.isJson('{"hello": "world"}');
console.log(isJson); // true

isConvertable

The isConvertable function is used to check if an object is serialisable.

Parameters

  • value - The value to check.
ts
isConvertable(value: any): boolean

Usage

ts
import { Utils } from '@sodacore/core';

const isConvertable = Utils.isConvertable({ hello: 'world' });
console.log(isConvertable); // true

getFilePath

The getFilePath function is used to get the file path, resolving based on the NODE_ENV status, i.e. is it from the src or dist folder.

Parameters

  • path - The path to resolve.
ts
getFilePath(path: string): string

Usage

ts
import { Utils } from '@sodacore/core';

const path = Utils.getFilePath('../worker/example.ts');
console.log(path); // /path/to/worker/example.ts

Released under the Apache-2.0 License.