Skip to content
  • This project
    • Loading...
  • Sign in

sayhoChun / kcSpecialVehicle

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • kcSpecialVehicle
  • .svn
  • pristine
  • 60
  • 6097f91e858216d321e8b1102a2f998117908...
  • sayhoChun's avatar
    hotfix) · 513526aa
    513526aa
    sayhoChun committed 2017-07-17 18:38:38 +0900
6097f91e858216d321e8b1102a2f99811790870f.svn-base 243 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18



var Map = function(){
	this.map = new Object();
};

Map.prototype = {
	put : function(key, value){
		this.map[key] = value;
	},
	get : function(key){
		return this.map[key];
	},
	containsKey : function(key){
		return key in this.map;
	}
};