mirror of https://github.com/tc39/test262.git
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
|
import drinkCocoa from './cocoa.js'
|
||
|
|
||
|
export default function drinkCappuccino()
|
||
|
{
|
||
|
return drinkCocoa();
|
||
|
}
|