Updated Hussie Pass scraper for new site design. Added cock size to profiles.

This commit is contained in:
DebaucheryLibrarian
2020-11-15 04:33:24 +01:00
parent b3a5d7f379
commit df9a6eac05
69 changed files with 267 additions and 145 deletions

View File

@@ -26,6 +26,10 @@ function cmToFeetInches(centimeters) {
return { feet, inches };
}
function cmToInches(centimeters) {
return centimeters / 2.54;
}
function heightToCm(height) {
if (!height) return null;
@@ -52,6 +56,7 @@ function kgToLbs(kgs) {
module.exports = {
cmToFeetInches,
cmToInches,
feetInchesToCm,
heightToCm,
inchesToCm,