UNPKG

246 BJavaScriptView Raw
1/*!
2 * to-path <https://github.com/jonschlinkert/to-path>
3 *
4 * Copyright (c) 2015, Jon Schlinkert.
5 * Licensed under the MIT License.
6 */
7
8'use strict';
9
10module.exports = function toPath() {
11 return [].concat.apply([], arguments).join('.');
12};