first commit

This commit is contained in:
tbushman
2018-10-29 19:41:46 -06:00
committed by mrugesh mohapatra
parent d341b9c45e
commit 5bb3556bfd
14042 changed files with 1580673 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _lodash = require('lodash');
var _lodash2 = _interopRequireDefault(_lodash);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* Casts all cell values to a string.
*
* @param {table~row[]} rows
* @returns {table~row[]}
*/
exports.default = rows => {
return _lodash2.default.map(rows, cells => {
return _lodash2.default.map(cells, String);
});
};
module.exports = exports['default'];