mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 15:41:05 +00:00
18 lines
383 B
JavaScript
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));
|
|
});
|