Sha256: e9c8e21cf8c024faa09d0ee6b260e6166fed02c41bf5fae9278e317b12bd227a

Contents?: true

Size: 663 Bytes

Versions: 39

Compression:

Stored size: 663 Bytes

Contents

/*!
 * to-object-path <https://github.com/jonschlinkert/to-object-path>
 *
 * Copyright (c) 2015, Jon Schlinkert.
 * Licensed under the MIT License.
 */

'use strict';

var typeOf = require('kind-of');

module.exports = function toPath(args) {
  if (typeOf(args) !== 'arguments') {
    args = arguments;
  }
  return filter(args).join('.');
};

function filter(arr) {
  var len = arr.length;
  var idx = -1;
  var res = [];

  while (++idx < len) {
    var ele = arr[idx];
    if (typeOf(ele) === 'arguments' || Array.isArray(ele)) {
      res.push.apply(res, filter(ele));
    } else if (typeof ele === 'string') {
      res.push(ele);
    }
  }
  return res;
}

Version data entries

39 entries across 38 versions & 12 rubygems

Version Path
ilog-0.4.0 node_modules/to-object-path/index.js
ilog-0.3.3 node_modules/to-object-path/index.js
jester-data-8.0.0 node_modules/to-object-path/index.js
ezii-os-5.2.1 node_modules/to-object-path/index.js
ezii-os-2.0.1 node_modules/to-object-path/index.js
ezii-os-1.1.0 node_modules/to-object-path/index.js
ezii-os-1.0.0 node_modules/to-object-path/index.js
ezii-os-0.0.0.1.0 node_modules/to-object-path/index.js
ezii-os-0.0.0.0.1 node_modules/to-object-path/index.js
optimacms-0.4.3 spec/dummy/node_modules/to-object-path/index.js
optimacms-0.4.2 spec/dummy/node_modules/to-object-path/index.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/to-object-path/index.js
lux_assets-0.2.11 ./node_modules/to-object-path/index.js
lux_assets-0.2.9 ./node_modules/to-object-path/index.js
lux_assets-0.2.4 ./node_modules/to-object-path/index.js
lux_assets-0.2.2 ./node_modules/to-object-path/index.js
lux_assets-0.2.1 ./node_modules/to-object-path/index.js
locomotivecms-3.4.0 app/javascript/node_modules/to-object-path/index.js
dragonfly_puppeteer-0.1.0 node_modules/to-object-path/index.js