"use strict";
var type = require("type-detect");
/**
* Returns the lower-case result of running type from type-detect on the value
*
* @param {*} value
* @returns {string}
*/module.exports = functiontypeOf(value) {
returntype(value).toLowerCase();
};