Plato on Github
Report Home
node_modules/es5-ext/array/#/clear.js
Maintainability
85.01
Lines of code
8
Difficulty
3.60
Estimated Errors
0.03
Function weight
By Complexity
By SLOC
// Inspired by Google Closure: // http://closure-library.googlecode.com/svn/docs/ // closure_goog_array_array.js.html#goog.array.clear 'use strict'; var value = require('../../object/valid-value'); module.exports = function () { value(this).length = 0; return this; };