• This project
    • Loading...
  • Sign in

허재욱 / ComNetPrj

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ComNetPrj
  • node_modules
  • urlobj
  • lib
  • UrlComponent.js
  • HJW's avatar
    Added test codes and grunt · 16995d0b
    16995d0b
    HJW authored 2017-11-05 16:00:13 +0900
UrlComponent.js 409 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
"use strict";

module.exports = 
{
	NOTHING:    -1,  // TODO :: rename to NONE
	
	PROTOCOL:   0,
	SCHEME:     0,
	
	//TLD:        1,
	//DOMAIN:     2,
	//SUB_DOMAIN: 3,
	HOSTNAME:   4,	// TODO :: implement domain parts
	PORT:       5,
	HOST:       6,
	AUTH:       7,
	DIRECTORY:  8,
	FILENAME:   9,
	PATHNAME:   10,
	
	QUERY:      11,
	SEARCH:     11,
	
	PATH:       12,
	
	HASH:       13,
	FRAGMENT:   13
};