mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
20 lines
233 B
Plaintext
20 lines
233 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: prop
|
|
# key: prop
|
|
# --
|
|
|
|
var $1 = (function(){
|
|
|
|
var value = undefined;
|
|
|
|
return function $1(newValue){
|
|
|
|
if( $1.arguments.length > 0 ){
|
|
value = newValue;
|
|
}
|
|
|
|
return value;
|
|
};
|
|
|
|
})();
|