blob: c73dab8b424fd94958b4fa6daecff9267a9f6def [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
Future<Object> loadJsonFromFile(File input) async {
return (await input
.openRead()
.transform(utf8.decoder)
.transform(json.decoder)
.first)!;
}