Skip to content

Instantly share code, notes, and snippets.

View petitroto's full-sized avatar

NAKAMURA Masayuki petitroto

View GitHub Profile
(function($) {
/**
* アプリケーション全体で共有するデータを保持したり、変更を通知する
*/
function Registry() {
}
Registry.prototype.put = function(key, value) {
this[key] = value;