Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/modules / ___dist / chain-able / src / deps / dot / dottable.js
Size: Mime:
"use strict";

const isObj = require("../is/obj");

const isArray = require("../is/array");

const isString = require("../is/string"); // const isDot = require('./is/dot')
// const isDottable = (obj, path) => isObj(obj) && isDot(path)


module.exports = (obj, path) => isObj(obj) && isString(path) || isArray(path);