UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

8 lines (7 loc) 258 B
/** * These values are allowed to exist without being boxed. */ export function isPrimitiveJSValue(value) { return value === null || value === undefined || typeof value === 'number' || typeof value === 'string' || typeof value === 'boolean'; }