A suite to track Project Diva score statistics and ratings / D4DJ event data.
 
 
 
 
 
 

16 lines
311 B

'use strict';
/**
* Tests if a value is a string primitive.
*
* @param {*} value - value to test
* @returns {Boolean} boolean indicating if a value is a string primitive
*/
function isString( value ) {
return typeof value === 'string';
} // end FUNCTION isString()
// EXPORTS //
module.exports = isString;