mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-28 00:50:17 -05:00
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
"use strict";
|
|
|
|
var isValue = require("./is-value");
|
|
|
|
var map = { function: true, object: true };
|
|
|
|
module.exports = function (value) { return (isValue(value) && map[typeof value]) || false; };
|