UNPKG

@ou-imdt/utils

Version:

Utility library for interactive media development

7 lines 201 B
/** * Checks if the code is running inside a VLE. * @returns {boolean} `true` if inside a VLE, otherwise `false`. */ export default function onVLE() { return window.VLE?.serverversion ?? false; };