mirror of
https://github.com/therootcompany/greenlock.js.git
synced 2025-07-03 22:46:31 +00:00
6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
'use strict';
|
|
|
|
module.exports.agreeToTerms = function (args, agree) {
|
|
agree(args.agreeTos || args.agree);
|
|
};
|