Yogu/site-manager

View on GitHub
src/compat.js

Summary

Maintainability
A
0 mins
Test Coverage
String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
};