frontend/.pnpm-store/v3/files/3d/c44725b7d9f30d7ae10932f7a6e3b4abd5f15979e1ecd7da13209e29a75aa41a1a6949b6929f6df1c69482450d13f5b6c3602ac5233dd1aa7f4c57bd20cccb

7 lines
144 B
Plaintext

'use strict';
module.exports = value => {
const type = typeof value;
return value !== null && (type === 'object' || type === 'function');
};