ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
24 lines (21 loc) • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _ramda = require("ramda");
/**
* Joins array of string with dot determiner.
*
* @func
* @category String
*
* @example
*
* R_.joinWithDot(['a', 'b', 'c']) // 'a.b.c'
*
* @sig [String] -> String
*/
var joinWithDot = (0, _ramda.join)('.');
var _default = joinWithDot;
exports.default = _default;