This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//---- externals/require ---- | |
require('clj-fuzzy'); | |
var _ = require('lodash'); | |
//---- private ---- | |
var html = ''; | |
var oldCleanedHTML = ''; | |
var newCleanedHTML = ''; | |
var prep = function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var simhash = require('simhash')(); | |
var ConvertBase = require('convert-base'); | |
var converter = new ConvertBase(); | |
var perc = function(i, j) { | |
return (+i/(+j)) * 100; | |
}; | |
var bigInt = require('js-big-integer').BigInteger; |