UNPKG

tastypie

Version:

Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces

16 lines (9 loc) 211 B
var get = require('./get'); var UNDEF; /** * Check if object has nested property. */ function has(obj, prop){ return get(obj, prop) !== UNDEF; } module.exports = has;