chore(): fix typescript errors

This commit is contained in:
Adam Bradley
2016-01-10 01:05:46 -06:00
parent 3a88b9ff91
commit c05d19606a
4 changed files with 64 additions and 57 deletions

View File

@ -1,8 +1,8 @@
export class FeatureDetect {
private _results: any = {};
run(window, document) {
this._results = {};
for (let name in featureDetects) {
this._results[name] = featureDetects[name](window, document, document.body);
}