Files
Modernizr/feature-detects/dart.js
Cătălin Mariș 1f8af59692 Update links
* Update / Remove broken links.
* Update links to use HTTPS where possible.
2016-01-15 02:21:35 +02:00

18 lines
383 B
JavaScript

/*!
{
"name": "Dart",
"property": "dart",
"authors": ["Theodoor van Donge"],
"notes": [{
"name": "Language website",
"href": "https://www.dartlang.org/"
}]
}
!*/
/* DOC
Detects native support for the Dart programming language.
*/
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
Modernizr.addTest('dart', !!prefixed('startDart', navigator));
});