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
{ | |
"type": "module", | |
"private": true, | |
"author": "Tommy May III <[email protected]>", | |
"license": "MIT", | |
"dependencies": { | |
"node-fetch": "~3.0.0", | |
"node-html-parser": "~4.1.4" | |
} | |
} |
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
/** | |
* Follow the docs here - https://developer.godaddy.com/getstarted to get credentials and learn about the Go Daddy Environments. | |
*/ | |
console.time('domain-testing') | |
// OTE | |
// const goDaddyDomain = 'api.ote-godaddy.com' | |
// const key = '' | |
// const secret = '' |
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
<?php | |
class ValueValidator { | |
public static function checkEmpty($value) { | |
return (empty($value)) ? true : false; | |
} | |
public static function checkIsset($value) { | |
return (isset($value)) ? true : false; | |
} |