This commit is contained in:
Ryan Dahl 2010-08-19 23:29:06 -07:00
Родитель 0c20c588af
Коммит 51ecba8da9
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -78,4 +78,12 @@ Buffer.prototype.write = function (string, offset, encoding) {
default:
throw new Error('Unknown encoding');
}
};
};
Buffer.prototype.get = function (index) {
return this[index];
};
Buffer.prototype.set = function (index, value) {
return this[index] = value;
};