Created
January 30, 2010 21:11
-
-
Save steffentchr/290726 to your computer and use it in GitHub Desktop.
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
function onePrivateFunction(whatevs) { | |
} | |
var PersistentStore = exports.PersistentStore = function(path) { | |
this.storage_path = path || this.DEFAULT_STORAGE_PATH; | |
var a = onePrivateFunction(3); | |
var anotherPrivateFunction = function(yes) { | |
... | |
} | |
this.publicProperty = anotherPrivateFunction(true); | |
} | |
PersistentStore.DEFAULT_STORAGE_PATH; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment