UNPKG

219 BJavaScriptView Raw
1'use strict'
2
3var util = require('util')
4
5module.exports.isPath = function(s) {
6 return (/[/\\]/).test(s)
7}
8
9module.exports.inspect = function(obj, depth) {
10 console.log(util.inspect(obj, false, depth || 5, true))
11}
12