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

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
30
pub points
48%
popularity

Publisher

unverified uploader

A library for writing yaml files

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

quiver

More

Packages that depend on yamlicious