Lucien Cartier-Tilet
c84aace663
langue.phundrak.com now runs using the `webdev` tool from Dart. Javascript code has been replaced with Dart code, and CSS code has been replaced with SCSS code. To run the project, execute `webdev serve` at the project’s root.
12 lines
207 B
Dart
12 lines
207 B
Dart
@JS()
|
|
library cookie;
|
|
|
|
import 'package:js/js.dart';
|
|
|
|
@JS()
|
|
class Cookies {
|
|
// external factory Cookie();
|
|
external static String get(String name);
|
|
external static void set(String name, String value);
|
|
}
|