UNPKG
holyfills
Version:
latest (1.0.1)
1.0.1
1.0.0
No more "Holy Sxxt!!" when writting ES5/ES6
github.com/tomchentw/holyfills
tomchentw/holyfills
holyfills
/
lib
/
helpers
/
isString.js
7 lines
(5 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
var
object_to_string =
require
(
"../helpers/object_to_string"
);
module
.
exports
=
function
(
obj
) {
return
object_to_string.
call
(obj) ===
"[object String]"
; };