Skip to content

requireApiVersion

requireApiVersion(version): boolean

Defined in: obsidian.d.ts:3608

Returns true if the API version is equal or higher than the requested version. Use this to limit functionality that require specific API versions to avoid crashing on older Obsidian builds.

string

boolean

requireApiVersion(version): boolean

Defined in: src/obsidian/augmentations/functions.d.ts:627

Returns true if the API version is equal or higher than the requested version. Use this to limit functionality that require specific API versions to avoid crashing on older Obsidian builds.

string

The version to check against.

boolean

true if the API version is equal or higher than the requested version.

console.log(requireApiVersion('1.8.9')); // true