/
githubmirror
/
angular.js
Обзор
Документация
Войти
/
githubmirror
/
angular.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.6.3
src/loader.prefix
10 строк
366 B
Peter Bacon Darwin
feat(info): add `angularVersion` info to each module
02 мар 2017, 11:25
02 мар 2017, 11:25
1e582e4
Код
Авторство
О чём код?
/** * @license AngularJS v"NG_VERSION_FULL" * (c) 2010-2017 Google, Inc. http://angularjs.org * License: MIT */ 'use strict'; (function() { function isFunction(value) {return typeof value === 'function';} function isDefined(value) {return typeof value !== 'undefined';} function isObject(value) {return value !== null && typeof value === 'object';}