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