UNPKG

to-style

Version:

Convert style objects to style strings

9 lines (5 loc) 158 B
'use strict' var objectToString = Object.prototype.toString module.exports = function(v){ return !!v && objectToString.call(v) === '[object Object]' }