vocajs.com Report : Visit Site


  • Ranking Alexa Global: # 3,021,163

    Server:nginx...

    The main IP address: 31.170.123.80,Your server United Kingdom,Ferndown ISP:Dataflame Internet Services Ltd  TLD:com CountryCode:GB

    The description :voca provides functions to manipulate strings in javascript: change case, trim, pad, slugifly, latinise, sprintf, truncate, escape and more...

    This report updates in 05-Jul-2018

Created Date:2016-04-10
Changed Date:2018-03-17

Technical data of the vocajs.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host vocajs.com. Currently, hosted in United Kingdom and its service provider is Dataflame Internet Services Ltd .

Latitude: 50.799999237061
Longitude: -1.8666700124741
Country: United Kingdom (GB)
City: Ferndown
Region: England
ISP: Dataflame Internet Services Ltd

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx containing the details of what the browser wants and will accept back from the web server.

Content-Length:216170
Accept-Ranges:bytes
Server:nginx
Last-Modified:Tue, 26 Dec 2017 11:32:05 GMT
Connection:keep-alive
ETag:"34c6a-5613ca1e6207a"
Date:Thu, 05 Jul 2018 03:05:59 GMT
Content-Type:text/html

DNS

soa:ns3.webfaction.com. hostmaster.vocajs.com. 1 10800 3600 604800 3600
ns:ns4.webfaction.com.
ns3.webfaction.com.
ns2.webfaction.com.
ns1.webfaction.com.
mx:MX preference = 10, mail exchanger = mx7.webfaction.com.
MX preference = 10, mail exchanger = mx8.webfaction.com.
MX preference = 10, mail exchanger = mx9.webfaction.com.
ipv4:IP:31.170.123.80
ASN:198047
OWNER:UKWEB-EQX, GB
Country:GB
ipv6:2a01:9cc0:47:1:1a:12:0:119//198047//UKWEB-EQX, GB//GB

HtmlToText

voca v1.4.0 ❌ case v.camelcase v.capitalize v.decapitalize v.kebabcase v.lowercase v.snakecase v.swapcase v.titlecase v.uppercase chain v v.chain v.prototype.chain v.prototype.thru v.prototype.value chop v.charat v.codepointat v.first v.graphemeat v.last v.prune v.slice v.substr v.substring v.truncate count v.count v.countgraphemes v.countsubstrings v.countwhere v.countwords escape v.escapehtml v.escaperegexp v.unescapehtml format v.sprintf v.vprintf index v.indexof v.lastindexof v.search manipulate v.insert v.latinise v.pad v.padleft v.padright v.repeat v.replace v.replaceall v.reverse v.reversegrapheme v.slugify v.splice v.tr v.trim v.trimleft v.trimright v.wordwrap query v.endswith v.includes v.isalpha v.isalphadigit v.isblank v.isdigit v.isempty v.islowercase v.isnumeric v.isstring v.isuppercase v.matches v.startswith split v.chars v.codepoints v.graphemes v.split v.words strip v.stripbom v.striptags util v.noconflict v.version the ultimate javascript string library tweet voca is a javascript library for manipulating strings. v.camelcase('bird flight'); // => 'birdflight' v.sprintf('%s costs $%.2f', 'tea', 1.5); // => 'tea costs $1.50' v.slugify('what a wonderful world'); // => 'what-a-wonderful-world' the voca library offers helpful functions to make string manipulations comfortable: change case, trim, pad, slugify, latinise, sprintf'y, truncate, escape and much more. the modular design allows to load the entire library, or individual functions to minimize the application builds. the library is fully tested , well documented and long-term supported . features provides the complete set of functions to manipulate, chop, format, escape and query strings includes detailed, easy to read and searchable documentation supports a wide range of environments: node.js 0.10+, chrome, firefox, safari 7+, edge 13+, ie 9+ 100% code coverage no dependencies usage voca can be used in various environments. node.js, rollup, webpack, browserify install the library with npm into your local modules directory: npm install voca commonjs modules then in your application require the entire library: var v = require('voca'); v.trim(' hello world! '); // => 'hello world' v.sprintf('%d red %s', 3, 'apples'); // => '3 red apples' or require individual functions: var words = require('voca/words'); var slugify = require('voca/slugify'); words('welcome to earth'); // => ['welcome', 'to', 'earth'] slugify('caffé latté'); // => 'caffe-latte' es2015 modules voca is compatible with es2015 modules to import the entire library: import voca from 'voca'; voca.kebabcase('goodbye blue sky'); // => 'goodbye-blue-sky' or import individual functions: import last from 'voca/last'; last('sun rises', 5); // => 'rises' browser load the umd builds directly into browser's web page: voca.min.js minified production-ready, with source map voca.js uncompressed with comments <script src="voca.js" type="text/javascript"></script> then a global variable v is exposed: <script type="text/javascript"> v.last('wonderful world', 5); // => 'world' </script> see also voca repository on github report an issue or suggest improvement contributing guide author dmitri pavlutin @panzerdp [email protected] license licensed under mit case functions to change the case -- methods -- v.camelcase (subject opt='' ) → {string} permalink source test converts the subject to camel case . parameters: subject {string} the string to convert to camel case. [optional= '' ] returns: {string} the camel case string. availability: 1.0.0 example: v.camelcase('bird flight'); // => 'birdflight' v.camelcase('birdflight'); // => 'birdflight' v.camelcase('-bird-flight-'); // => 'birdflight' v.capitalize (subject opt='' , resttolower opt=false ) → {string} permalink source test converts the first character of subject to upper case. if resttolower is true , convert the rest of subject to lower case. parameters: subject {string} the string to capitalize. [optional= '' ] resttolower {boolean} convert the rest of subject to lower case. [optional= false ] returns: {string} returns the capitalized string. availability: 1.0.0 example: v.capitalize('apple'); // => 'apple' v.capitalize('apple', true); // => 'apple' v.decapitalize (subject opt='' ) → {string} permalink source test converts the first character of subject to lower case. parameters: subject {string} the string to decapitalize. [optional= '' ] returns: {string} returns the decapitalized string. availability: 1.0.0 example: v.decapitalize('sun'); // => 'sun' v.decapitalize('moon'); // => 'moon' v.kebabcase (subject opt='' ) → {string} permalink source test converts the subject to kebab case , also called spinal case or lisp case . parameters: subject {string} the string to convert to kebab case. [optional= '' ] returns: {string} returns the kebab case string. availability: 1.0.0 example: v.kebabcase('goodbye blue sky'); // => 'goodbye-blue-sky' v.kebabcase('goodbyebluesky'); // => 'goodbye-blue-sky' v.kebabcase('-goodbye-blue-sky-'); // => 'goodbye-blue-sky' v.lowercase (subject opt='' ) → {string} permalink source test converts the subject to lower case. parameters: subject {string} the string to convert to lower case. [optional= '' ] returns: {string} returns the lower case string. availability: 1.0.0 example: v.lowercase('green'); // => 'green' v.lowercase('blue'); // => 'blue' v.snakecase (subject opt='' ) → {string} permalink source test converts the subject to snake case . parameters: subject {string} the string to convert to snake case. [optional= '' ] returns: {string} returns the snake case string. availability: 1.0.0 example: v.snakecase('learning to fly'); // => 'learning_to_fly' v.snakecase('learningtofly'); // => 'learning_to_fly' v.snakecase('-learning-to-fly-'); // => 'learning_to_fly' v.swapcase (subject opt='' ) → {string} permalink source test converts the uppercase alpha caracters of subject to lowercase and lowercase characters to uppercase. parameters: subject {string} the string to swap the case. [optional= '' ] returns: {string} returns the converted string. availability: 1.3.0 example: v.swapcase('league of shadows'); // => 'league of shadows' v.swapcase('2 bees'); // => '2 bees' v.titlecase (subject opt='' , nosplit opt ) → {string} permalink source test converts the subject to title case. parameters: subject {string} the string to convert to title case. [optional= '' ] nosplit {array} do not split words at the specified characters. [optional] returns: {string} returns the title case string. availability: 1.4.0 example: v.titlecase('learning to fly'); // => 'learning to fly' v.titlecase('jean-luc is good-looking', ['-']); // => 'jean-luc is good-looking' v.uppercase (subject opt='' ) → {string} permalink source test converts the subject to upper case. parameters: subject {string} the string to convert to upper case. [optional= '' ] returns: {string} returns the upper case string. availability: 1.0.0 example: v.uppercase('school'); // => 'school' chain chain functions -- methods -- v (subject) → {object} permalink source test creates a chain object that wraps subject , enabling implicit chain sequences. a function that returns number , boolean or array type terminates the chain sequence and returns the unwrapped value. otherwise use v.prototype.value() to unwrap the result. parameters: subject {string} the string to wrap. returns: {object} returns the new wrapper object. availability: 1.0.0 example: v('back to school') .lowercase() .words() // => ['back', 'to', 'school'] v(" back to school ") .trim() .truncate(7) .value() // => 'back...' v.chain (subject) → {object} permalink source test creates a chain object that wraps subject , enabling explicit chain sequences. use v.prototype.value() to unwrap the result. parameters: subject {string} the string to wrap. returns: {object} returns the new wrapper object. availability: 1.0.0 example: v .chain('ba

URL analysis for vocajs.com


https://vocajs.com/#escaperegexp
https://vocajs.com/#replaceall
https://vocajs.com/#striptags
https://vocajs.com/#uppercase
https://vocajs.com/#truncate
https://vocajs.com/#startswith
https://vocajs.com/#snakecase
https://vocajs.com/#lowercase
https://vocajs.com/#isdigit
https://vocajs.com/#codepoints
https://vocajs.com/#codepointat
https://vocajs.com/#splice
https://vocajs.com/#slice
https://vocajs.com/#swapcase
https://vocajs.com/#substring

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: VOCAJS.COM
Registry Domain ID: 2020416395_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2018-03-17T09:10:19Z
Creation Date: 2016-04-10T07:08:57Z
Registry Expiry Date: 2019-04-10T07:08:57Z
Registrar: NameCheap Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.WEBFACTION.COM
Name Server: NS2.WEBFACTION.COM
Name Server: NS3.WEBFACTION.COM
Name Server: NS4.WEBFACTION.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-03-22T09:34:02Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR NameCheap Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =vocajs.com

  PORT 43

  TYPE domain

DOMAIN

  NAME vocajs.com

  CHANGED 2018-03-17

  CREATED 2016-04-10

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS1.WEBFACTION.COM 185.20.51.42

  NS2.WEBFACTION.COM 103.44.220.74

  NS3.WEBFACTION.COM 62.138.130.11

  NS4.WEBFACTION.COM 148.72.160.4

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uvocajs.com
  • www.7vocajs.com
  • www.hvocajs.com
  • www.kvocajs.com
  • www.jvocajs.com
  • www.ivocajs.com
  • www.8vocajs.com
  • www.yvocajs.com
  • www.vocajsebc.com
  • www.vocajsebc.com
  • www.vocajs3bc.com
  • www.vocajswbc.com
  • www.vocajssbc.com
  • www.vocajs#bc.com
  • www.vocajsdbc.com
  • www.vocajsfbc.com
  • www.vocajs&bc.com
  • www.vocajsrbc.com
  • www.urlw4ebc.com
  • www.vocajs4bc.com
  • www.vocajsc.com
  • www.vocajsbc.com
  • www.vocajsvc.com
  • www.vocajsvbc.com
  • www.vocajsvc.com
  • www.vocajs c.com
  • www.vocajs bc.com
  • www.vocajs c.com
  • www.vocajsgc.com
  • www.vocajsgbc.com
  • www.vocajsgc.com
  • www.vocajsjc.com
  • www.vocajsjbc.com
  • www.vocajsjc.com
  • www.vocajsnc.com
  • www.vocajsnbc.com
  • www.vocajsnc.com
  • www.vocajshc.com
  • www.vocajshbc.com
  • www.vocajshc.com
  • www.vocajs.com
  • www.vocajsc.com
  • www.vocajsx.com
  • www.vocajsxc.com
  • www.vocajsx.com
  • www.vocajsf.com
  • www.vocajsfc.com
  • www.vocajsf.com
  • www.vocajsv.com
  • www.vocajsvc.com
  • www.vocajsv.com
  • www.vocajsd.com
  • www.vocajsdc.com
  • www.vocajsd.com
  • www.vocajscb.com
  • www.vocajscom
  • www.vocajs..com
  • www.vocajs/com
  • www.vocajs/.com
  • www.vocajs./com
  • www.vocajsncom
  • www.vocajsn.com
  • www.vocajs.ncom
  • www.vocajs;com
  • www.vocajs;.com
  • www.vocajs.;com
  • www.vocajslcom
  • www.vocajsl.com
  • www.vocajs.lcom
  • www.vocajs com
  • www.vocajs .com
  • www.vocajs. com
  • www.vocajs,com
  • www.vocajs,.com
  • www.vocajs.,com
  • www.vocajsmcom
  • www.vocajsm.com
  • www.vocajs.mcom
  • www.vocajs.ccom
  • www.vocajs.om
  • www.vocajs.ccom
  • www.vocajs.xom
  • www.vocajs.xcom
  • www.vocajs.cxom
  • www.vocajs.fom
  • www.vocajs.fcom
  • www.vocajs.cfom
  • www.vocajs.vom
  • www.vocajs.vcom
  • www.vocajs.cvom
  • www.vocajs.dom
  • www.vocajs.dcom
  • www.vocajs.cdom
  • www.vocajsc.om
  • www.vocajs.cm
  • www.vocajs.coom
  • www.vocajs.cpm
  • www.vocajs.cpom
  • www.vocajs.copm
  • www.vocajs.cim
  • www.vocajs.ciom
  • www.vocajs.coim
  • www.vocajs.ckm
  • www.vocajs.ckom
  • www.vocajs.cokm
  • www.vocajs.clm
  • www.vocajs.clom
  • www.vocajs.colm
  • www.vocajs.c0m
  • www.vocajs.c0om
  • www.vocajs.co0m
  • www.vocajs.c:m
  • www.vocajs.c:om
  • www.vocajs.co:m
  • www.vocajs.c9m
  • www.vocajs.c9om
  • www.vocajs.co9m
  • www.vocajs.ocm
  • www.vocajs.co
  • vocajs.comm
  • www.vocajs.con
  • www.vocajs.conm
  • vocajs.comn
  • www.vocajs.col
  • www.vocajs.colm
  • vocajs.coml
  • www.vocajs.co
  • www.vocajs.co m
  • vocajs.com
  • www.vocajs.cok
  • www.vocajs.cokm
  • vocajs.comk
  • www.vocajs.co,
  • www.vocajs.co,m
  • vocajs.com,
  • www.vocajs.coj
  • www.vocajs.cojm
  • vocajs.comj
  • www.vocajs.cmo
Show All Mistakes Hide All Mistakes