UNPKG

react-youtube-playlist

Version:

A react component for displaying the contents of a user's YouTube playlist.

13 lines (10 loc) 288 B
/*! * isobject <https://github.com/jonschlinkert/isobject> * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; module.exports = function isObject(val) { return val != null && typeof val === 'object' && Array.isArray(val) === false; };