PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
ends-with
/*! * ends-with <https://github.com/jonschlinkert/ends-with> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT license. */ 'use strict'; module.exports = function (a, b) { if (Array.isArray(a)) { return a[a.length - 1] === b; } a = String(a); b = String(b); var i = b.length; var len = a.length - i; while (i--) { if (b.charAt(i) !== a.charAt(len + i)) { return false; } } return true; };
[-] LICENSE-MIT
[edit]
[-] .gitattributes
[edit]
[+]
..
[-] .npmignore
[edit]
[-] .jshintrc
[edit]
[-] package.json
[edit]
[-] test.js
[edit]
[-] index.js
[edit]
[+]
benchmark
[-] .verbrc.md
[edit]
[-] .travis.yml
[edit]
[-] README.md
[edit]