From c2ebe7f26de4b7781f30a7b2d73b51fa11d20ed8 Mon Sep 17 00:00:00 2001 From: James Kyle Date: Fri, 3 Jul 2015 20:17:55 +0100 Subject: [PATCH] Add descriptions to api/register/cache --- src/babel/api/register/cache.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/babel/api/register/cache.js b/src/babel/api/register/cache.js index 446d74afd3..73ab94b175 100644 --- a/src/babel/api/register/cache.js +++ b/src/babel/api/register/cache.js @@ -7,7 +7,7 @@ const FILENAME = process.env.BABEL_CACHE_PATH || path.join(homeOrTmp, ".babel.js var data = {}; /** - * [Please add a description.] + * Write stringified cache to disk. */ export function save() { @@ -15,7 +15,7 @@ export function save() { } /** - * [Please add a description.] + * Load cache from disk and parse. */ export function load() { @@ -34,7 +34,7 @@ export function load() { } /** - * [Please add a description.] + * Retrieve data from cache. */ export function get() {