yoastseo-dep
Version:
Yoast clientside page analysis
35 lines (31 loc) • 828 B
JavaScript
/**
* Gets the parsed type name of subjects.
*
* @param {array|object|string|number} subject The subject to get the parsed type from.
* @returns {string} The parsed type name.
*/
var getType = function( subject ) {
if ( Array.isArray( subject ) ) {
return "array";
}
return typeof subject;
};
/**
* Validates the type of subjects. Throws an error if the type is invalid.
*
* @param {object} subject The object containing all subjects.
* @param {string} expectedType The expected type.
* @returns {boolean} Returns true if types matches expected type. Otherwise returns false.
*/
var isSameType = function( subject, expectedType ) {
var passedType = getType( subject );
return passedType === expectedType;
};
export {
getType,
isSameType,
};
export default {
getType: getType,
isSameType: isSameType,
};