]> git.r.bdr.sh - rbdr/dotfiles/blob
3587bdf972d458e9237fe1a048a894a714338bc1
[rbdr/dotfiles] /
1 // Inspired by Google Closure:
2 // http://closure-library.googlecode.com/svn/docs/
3 // closure_goog_array_array.js.html#goog.array.clear
4
5 'use strict';
6
7 var value = require('../../object/valid-value');
8
9 module.exports = function () {
10 value(this).length = 0;
11 return this;
12 };