UNPKG

vue2-datatable-component

Version:

The best Datatable for Vue.js 2.x which never sucks

10 lines (9 loc) 229 B
// https://stackoverflow.com/a/7616484/5172890 export default function (s) { let hash = 0 for (let i = 0; i < s.length; i++) { hash = ((hash << 5) - hash) + s.charCodeAt(i) hash |= 0 } return '' + hash }