UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

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