From b54df0ddd0c6a0372327c5aa3668e5a6458fcd64 Mon Sep 17 00:00:00 2001 From: st782s Date: Thu, 4 May 2017 07:48:42 -0400 Subject: [PORTAL-7] Rebase This rebasing includes common libraries and common overlays projects abstraction of components Change-Id: I9a24a338665c7cd058978e8636bc412d9e2fdce8 Signed-off-by: st782s --- .../bower_components/lodash/lib/fp/build-doc.js | 65 ---------------------- 1 file changed, 65 deletions(-) delete mode 100644 ecomp-portal-FE/client/bower_components/lodash/lib/fp/build-doc.js (limited to 'ecomp-portal-FE/client/bower_components/lodash/lib/fp/build-doc.js') diff --git a/ecomp-portal-FE/client/bower_components/lodash/lib/fp/build-doc.js b/ecomp-portal-FE/client/bower_components/lodash/lib/fp/build-doc.js deleted file mode 100644 index 02800bcf..00000000 --- a/ecomp-portal-FE/client/bower_components/lodash/lib/fp/build-doc.js +++ /dev/null @@ -1,65 +0,0 @@ -'use strict'; - -var _ = require('lodash'), - fs = require('fs-extra'), - path = require('path'); - -var file = require('../common/file'), - mapping = require('../common/mapping'); - -var templatePath = path.join(__dirname, 'template/doc'), - template = file.globTemplate(path.join(templatePath, '*.jst')); - -var argNames = ['a', 'b', 'c', 'd']; - -var templateData = { - 'mapping': mapping, - 'toArgOrder': toArgOrder, - 'toFuncList': toFuncList -}; - -function toArgOrder(array) { - var reordered = []; - _.each(array, function(newIndex, index) { - reordered[newIndex] = argNames[index]; - }); - return '`(' + reordered.join(', ') + ')`'; -} - -function toFuncList(array) { - var chunks = _.chunk(array.slice().sort(), 5), - lastChunk = _.last(chunks), - last = lastChunk ? lastChunk.pop() : undefined; - - chunks = _.reject(chunks, _.isEmpty); - lastChunk = _.last(chunks); - - var result = '`' + _.map(chunks, function(chunk) { - return chunk.join('`, `') + '`'; - }).join(',\n`'); - - if (last == null) { - return result; - } - if (_.size(chunks) > 1 || _.size(lastChunk) > 1) { - result += ','; - } - result += ' &'; - result += _.size(lastChunk) < 5 ? ' ' : '\n'; - return result + '`' + last + '`'; -} - -/*----------------------------------------------------------------------------*/ - -function onComplete(error) { - if (error) { - throw error; - } -} - -function build(target) { - target = path.resolve(target); - fs.writeFile(target, template.wiki(templateData), onComplete); -} - -build(_.last(process.argv)); -- cgit 1.2.3-korg