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
optimacms-0.1.61 spec/dummy/node_modules/to-object-path/index.js
disco_app-0.18.0 test/dummy/node_modules/to-object-path/index.js
disco_app-0.18.2 test/dummy/node_modules/to-object-path/index.js
disco_app-0.16.1 test/dummy/node_modules/to-object-path/index.js
disco_app-0.15.2 test/dummy/node_modules/to-object-path/index.js
disco_app-0.18.4 test/dummy/node_modules/to-object-path/index.js
disco_app-0.18.1 test/dummy/node_modules/to-object-path/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/to-object-path/index.js
disco_app-0.14.0 test/dummy/node_modules/to-object-path/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/to-object-path/index.js
tang-0.2.1 spec/tang_app/node_modules/to-object-path/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/to-object-path/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/to-object-path/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/to-object-path/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/to-object-path/index.js
tang-0.2.0 spec/tang_app/node_modules/to-object-path/index.js
tang-0.1.0 spec/tang_app/node_modules/to-object-path/index.js
tang-0.0.9 spec/tang_app/node_modules/to-object-path/index.js
enju_library-0.3.8 spec/dummy/node_modules/to-object-path/index.js
ilog-0.4.1 node_modules/to-object-path/index.js