yamlicious 0.0.4 copy "yamlicious: ^0.0.4" to clipboard
yamlicious: ^0.0.4 copied to clipboard

outdatedDart 1 only

A library for writing yaml files

example/yamlicious.dart

// Copyright (c) 2015, Anders Holmgren. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

library yamlicious.example;

import 'dart:io' show File;

import 'package:yaml/yaml.dart' show loadYaml;
import 'package:yamlicious/yamlicious.dart' show toYamlString;

main() {
  File file = new File("pubspec.yaml");
  print(toYamlString(loadYaml(file.readAsStringSync())));
}
2
likes
0
pub points
65%
popularity

Publisher

unverified uploader

A library for writing yaml files

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

quiver

More

Packages that depend on yamlicious