UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

7 lines (5 loc) 258 B
'use strict'; /** @type {(value: unknown) => value is null | undefined | string | symbol | number | boolean | bigint} */ module.exports = function isPrimitive(value) { return value === null || (typeof value !== 'function' && typeof value !== 'object'); };