UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

10 lines (9 loc) 319 B
function is_string(mixed_var) { // discuss at: http://phpjs.org/functions/is_string/ // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // example 1: is_string('23'); // returns 1: true // example 2: is_string(23.5); // returns 2: false return (typeof mixed_var === 'string'); }