* The `update` method aliases the `create` method. * * @method update * @param {String} label The label for the cache. * @param {String} type The type of package cache. * @param {String} manifest The contents of the manifest file for the cache. * @param {Array} links Packages to el
(/*label, type, manifest, links*/)
| 610 | * @return {String} The directory on disk which contains the cache. |
| 611 | */ |
| 612 | update(/*label, type, manifest, links*/) { |
| 613 | return this.create.apply(this, arguments); |
| 614 | } |
| 615 | |
| 616 | /** |
| 617 | * The `get` method returns the directory for the cache. |